Skip to content

Commit d194f6f

Browse files
author
Cliff Woolley
committed
The '-@' seems to be more portable than '- @'. FreeBSD complained
about the latter. Tested on: Linux, FreeBSD, Solaris, HP/UX, Darwin git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95695 13f79535-47bb-0310-9956-ffa450edef68
1 parent 125c7e3 commit d194f6f

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
@@ -108,25 +108,25 @@ install-htdocs:
108108
@test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir))
109109
@test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir)
110110
@test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir))
111-
- @test "x$(htdocsdir)" != "x" && cd $(DESTDIR)$(htdocsdir) && find . -name "CVS" -print | xargs rm -rf
111+
-@test "x$(htdocsdir)" != "x" && cd $(DESTDIR)$(htdocsdir) && find . -name "CVS" -print | xargs rm -rf
112112

113113
install-error:
114114
@echo Installing error documents
115115
@test -d $(DESTDIR)$(errordir) || $(MKINSTALLDIRS) $(DESTDIR)$(errordir)
116116
@cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir)
117-
- @test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name "CVS" -print | xargs rm -rf
117+
-@test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name "CVS" -print | xargs rm -rf
118118

119119
install-icons:
120120
@echo Installing icons
121121
@test -d $(DESTDIR)$(iconsdir) || $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir)
122122
@cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir)
123-
- @test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name "CVS" -print | xargs rm -rf
123+
-@test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name "CVS" -print | xargs rm -rf
124124

125125
install-cgi:
126126
@echo Installing CGIs
127127
@test -d $(DESTDIR)$(cgidir) || $(MKINSTALLDIRS) $(DESTDIR)$(cgidir)
128128
@cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir)
129-
- @test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name "CVS" -print | xargs rm -rf
129+
-@test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name "CVS" -print | xargs rm -rf
130130

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

0 commit comments

Comments
 (0)