summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaforge <laforge>2001-07-31 20:51:31 +0000
committerlaforge <laforge>2001-07-31 20:51:31 +0000
commit716630ae45798c78d1d775fd90b0a052834827ab (patch)
treefe9223fc2212ae951ebf32e4aef3daf7c9a01c56
parent9147b06c7c25421c8541f4b49b23169cb13c1476 (diff)
add OR (-o) to find in 'clean' target of Rules.make
-rw-r--r--Rules.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.make b/Rules.make
index 56b482a..7c84143 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" ];\