[Apt-listbugs-commits] [SCM] apt-listbugs development tree branch, master, updated. 0.0.95-22-g2f93468

Ryan Niebur ryanryan52 at gmail.com
Fri May 15 15:16:39 UTC 2009


The following commit has been merged in the master branch:
commit 2f934687367b07f56a36ebc667a9a6fd238c3716
Author: Ryan Niebur <ryanryan52 at gmail.com>
Date:   Fri May 15 08:16:33 2009 -0700

    fix the clean target to just use rm -f instead of ignoring errors

diff --git a/Makefile b/Makefile
index 070ba88..cf4c18f 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ SHELL = /bin/bash
 all:
 
 clean:
-	-find -name '*~' | xargs rm -- 
-	-rm tests/log/tmp
+	find -name '*~' | xargs rm -f -- 
+	rm -f tests/log/tmp
 
 check:
 	: > tests/log/SUMMARY 

-- 
apt-listbugs development tree



More information about the Apt-listbugs-commits mailing list