summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBrian Pane <brianp@apache.org>2002-05-25 04:14:51 +0000
committerBrian Pane <brianp@apache.org>2002-05-25 04:14:51 +0000
commit8483e52370e5f08f28b2a017bbe463ff0da37e7b (patch)
tree0c8b2e8aa658b1a6ada85c64add741e111f51389 /Makefile.in
parentaf53c1fe286209a29e66fdb88349418dae46b608 (diff)
downloadhttpd-8483e52370e5f08f28b2a017bbe463ff0da37e7b.tar.gz
Removed extraneous "{} \;" from some xargs calls
Submitted by: Joe Orton <jorton@redhat.com> Reviewed by: Brian Pane git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index c83ec890fc..bea3a0a2bc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -109,25 +109,25 @@ install-htdocs:
@test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir))
@test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir)
@test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir))
- @test "x$(htdocsdir)" != "x" && cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;
+ @test "x$(htdocsdir)" != "x" && cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf
install-error:
@echo Installing error documents
@test -d $(errordir) || $(MKINSTALLDIRS) $(errordir)
@cd $(top_srcdir)/docs/error && cp -rp * $(errordir)
- @test "x$(errordir)" != "x" && cd $(errordir) && find . -name "CVS" -print | xargs rm -rf {} \;
+ @test "x$(errordir)" != "x" && cd $(errordir) && find . -name "CVS" -print | xargs rm -rf
install-icons:
@echo Installing icons
@test -d $(iconsdir) || $(MKINSTALLDIRS) $(iconsdir)
@cd $(top_srcdir)/docs/icons && cp -rp * $(iconsdir)
- @test "x$(iconsdir)" != "x" && cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf {} \;
+ @test "x$(iconsdir)" != "x" && cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf
install-cgi:
@echo Installing CGIs
@test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir)
@cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir)
- @test "x$(cgidir)" != "x" && cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;
+ @test "x$(cgidir)" != "x" && cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf
install-other:
@test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir)