summaryrefslogtreecommitdiffstats
path: root/Rules.make
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2001-07-31 20:51:31 +0000
committerHarald Welte <laforge@gnumonks.org>2001-07-31 20:51:31 +0000
commitdb16ed18a7b1e3892e646848c25cffc5a36e0a5c (patch)
treefe9223fc2212ae951ebf32e4aef3daf7c9a01c56 /Rules.make
parent6a9029e0acaa22d9097be1e886fd340f6161bd90 (diff)
add OR (-o) to find in 'clean' target of Rules.make
Diffstat (limited to 'Rules.make')
-rw-r--r--Rules.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.make b/Rules.make
index 56b482a9..7c84143f 100644
--- a/Rules.make
+++ b/Rules.make
@@ -7,7 +7,7 @@ experimental: $(EXTRAS_EXP)
# Have to handle extensions which no longer exist.
clean: $(EXTRA_CLEANS)
rm -f $(SHARED_LIBS) $(EXTRAS) $(EXTRAS_EXP) $(SHARED_LIBS:%.so=%_sh.o)
- @find . -name '*.[ao]' -name '*.so' | xargs rm -f
+ @find . -name '*.[ao]' -o -name '*.so' | xargs rm -f
install: all $(EXTRA_INSTALLS)
@if [ -f /usr/local/bin/iptables -a "$(BINDIR)" = "/usr/local/sbin" ];\