aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-09-01 17:57:31 -0400
committerRob Austein <sra@hactrn.net>2016-09-01 17:57:31 -0400
commitd7468933468bac63584a4db61d4a613ad5d68933 (patch)
treee4130d79e77e6462e703e61e5a4bd8921448d1e9
parent746a1eac11759f51cfb39c5c8be228651b33269f (diff)
"make clean" needs to use "rm -f" to avoid gratuitous failures.
-rw-r--r--libraries/libcli/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/libcli/Makefile b/libraries/libcli/Makefile
index c2dad35..ec79b37 100644
--- a/libraries/libcli/Makefile
+++ b/libraries/libcli/Makefile
@@ -19,4 +19,4 @@ libcli.a: libcli.o
$(AR) rcs $@ $^
clean:
- rm libcli.[ao]
+ rm -f libcli.[ao]