git » libfiu » commit 3dcaa5a

preload/run: Use rm -f for files that may not be there

author Alberto Bertogli
2010-10-17 02:01:51 UTC
committer Alberto Bertogli
2010-10-17 02:01:51 UTC
parent 4d4877045b028d1a6adcae7310ce574fb30327a9

preload/run: Use rm -f for files that may not be there

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

preload/run/Makefile +1 -1

diff --git a/preload/run/Makefile b/preload/run/Makefile
index d408f96..c0d864c 100644
--- a/preload/run/Makefile
+++ b/preload/run/Makefile
@@ -54,7 +54,7 @@ $(OBJS): build-flags
 build-needlibdl:
 	@$(LD) -ldl -o dlcheck.so 2>/dev/null \
 		&& echo -ldl > $@ || echo > $@
-	@rm dlcheck.so
+	@rm -f dlcheck.so
 
 
 fiu_run_preload.so: build-flags build-needlibdl $(OBJS)