Skip to content

Commit c1484ee

Browse files
author
Brian Pane
committed
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
1 parent 88a782e commit c1484ee

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,25 +109,25 @@ install-htdocs:
109109
@test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir))
110110
@test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir)
111111
@test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir))
112-
@test "x$(htdocsdir)" != "x" && cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;
112+
@test "x$(htdocsdir)" != "x" && cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf
113113

114114
install-error:
115115
@echo Installing error documents
116116
@test -d $(errordir) || $(MKINSTALLDIRS) $(errordir)
117117
@cd $(top_srcdir)/docs/error && cp -rp * $(errordir)
118-
@test "x$(errordir)" != "x" && cd $(errordir) && find . -name "CVS" -print | xargs rm -rf {} \;
118+
@test "x$(errordir)" != "x" && cd $(errordir) && find . -name "CVS" -print | xargs rm -rf
119119

120120
install-icons:
121121
@echo Installing icons
122122
@test -d $(iconsdir) || $(MKINSTALLDIRS) $(iconsdir)
123123
@cd $(top_srcdir)/docs/icons && cp -rp * $(iconsdir)
124-
@test "x$(iconsdir)" != "x" && cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf {} \;
124+
@test "x$(iconsdir)" != "x" && cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf
125125

126126
install-cgi:
127127
@echo Installing CGIs
128128
@test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir)
129129
@cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir)
130-
@test "x$(cgidir)" != "x" && cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;
130+
@test "x$(cgidir)" != "x" && cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf
131131

132132
install-other:
133133
@test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir)

0 commit comments

Comments
 (0)