Cliff Woolley wrote:
> ... in http://httpd.apache.org/dev/dist/
>
> --Cliff
>
>
I have noted the following on ReliantUnix:
+++
Installing configuration files
Installing HTML documents
Usage: rm [-firR] file ...
make[1]: *** [install-htdocs] Error 2
make[1]: Leaving directory `/home1/apache20/httpd-2.0.37'
make: *** [install-recursive] Error 1
+++
The fix is easy. Find it attached.
Cheers
Jean-frederic
--- Makefile.in.org Wed Jun 12 15:53:19 2002
+++ Makefile.in Wed Jun 12 15:54:18 2002
@@ -108,25 +108,25 @@
@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)