[Pkg-voip-commits] r2978 - pwlib/trunk/debian

Kilian Krause kilian at alioth.debian.org
Sun Jan 7 23:11:26 CET 2007


Author: kilian
Date: 2007-01-07 23:11:26 +0100 (Sun, 07 Jan 2007)
New Revision: 2978

Modified:
   pwlib/trunk/debian/rules
Log:
fix -rm not found.


Modified: pwlib/trunk/debian/rules
===================================================================
--- pwlib/trunk/debian/rules	2007-01-07 22:11:05 UTC (rev 2977)
+++ pwlib/trunk/debian/rules	2007-01-07 22:11:26 UTC (rev 2978)
@@ -77,14 +77,14 @@
 	# then we ensure that the fresh build works with hello world.
 	# ...in static
 	-$(MAKE) PWLIBDIR=$(CURDIR) -C samples/hello_world/ clean
-	-$(RM) -rf samples/hello_world/obj_*
+	$(RM) -rf samples/hello_world/obj_*
 	$(MAKE) PWLIBDIR=$(CURDIR) -C samples/hello_world/ bothnoshared
 	samples/hello_world/obj_*_d/hello
 	samples/hello_world/obj_*_r/hello
 	
 	# ...and in shared..
 	$(MAKE) PWLIBDIR=$(CURDIR) -C samples/hello_world/ clean
-	-$(RM) -rf samples/hello_world/obj_*
+	$(RM) -rf samples/hello_world/obj_*
 	$(MAKE) PWLIBDIR=$(CURDIR) -C samples/hello_world/ bothshared
 	if (samples/hello_world/obj_*_d/hello 2>/dev/null);then \
 		echo debug hello_world sample incorrectly compiled static; false ; \
@@ -101,7 +101,7 @@
 	# if this won't work, we needn't even try going any further...
 	# cleanup to make sure we don't install any of the samples we just compiled
 	$(MAKE) PWLIBDIR=$(CURDIR) -C samples/hello_world/ clean
-	-$(RM) -rf samples/hello_world/obj_*
+	$(RM) -rf samples/hello_world/obj_*
 	
 	touch build-arch-stamp
 




More information about the Pkg-voip-commits mailing list