summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-04-01 17:33:52 +0200
committerMartin Mares <mj@ucw.cz>1999-04-01 17:33:52 +0200
commitabae6e9cd3f041648eaa85fad2f861515b67c1ce (patch)
tree57384282d1645dfa43b17e59fdef99f1501d3d41 /tools
parent6accdf4f437ef2a3251df917f2b83fe985e64961 (diff)
downloadbird-abae6e9cd3f041648eaa85fad2f861515b67c1ce.tar
bird-abae6e9cd3f041648eaa85fad2f861515b67c1ce.zip
First few FreeBSD portability fixes.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile-top.in2
-rw-r--r--tools/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile-top.in b/tools/Makefile-top.in
index 4493a40..13dc606 100644
--- a/tools/Makefile-top.in
+++ b/tools/Makefile-top.in
@@ -8,7 +8,7 @@ all depend:
clean:
$(MAKE) -C $(objdir) clean
- rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name .#*`
+ find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name .#* | xargs rm -f
distclean: clean
rm -rf $(objdir)
diff --git a/tools/Makefile.in b/tools/Makefile.in
index ce649d6..9895b10 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -25,7 +25,7 @@ $(exedir)/bird: $(addsuffix /all.o, $(static-dirs)) conf/all.o lib/birdlib.a
touch .dep-stamp
clean:
- rm -f `find . -name "*.[oa]" -or -name core -or -name depend`
+ find . -name "*.[oa]" -or -name core -or -name depend | xargs rm -f
rm -f $(exedir)/bird .dep-stamp
distclean: clean