diff options
author | Rob Austein <sra@hactrn.net> | 2016-09-01 17:57:31 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-09-01 17:57:31 -0400 |
commit | d7468933468bac63584a4db61d4a613ad5d68933 (patch) | |
tree | e4130d79e77e6462e703e61e5a4bd8921448d1e9 /libraries/libcli/Makefile | |
parent | 746a1eac11759f51cfb39c5c8be228651b33269f (diff) |
"make clean" needs to use "rm -f" to avoid gratuitous failures.
Diffstat (limited to 'libraries/libcli/Makefile')
-rw-r--r-- | libraries/libcli/Makefile | 2 |
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] |