You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Thom May <th...@planetarytramp.net> on 2002/03/21 21:19:40 UTC

[Patch] support -test for the correct directories before installing to them

Hi, 
currently the Makefile in support/ tests for the presence of $bindir and
then installs into $sbindir. This is a patch to fix this.
Cheers,
-Thom

Index: support/Makefile.in
===================================================================
RCS file: /home/cvspublic/httpd-2.0/support/Makefile.in,v
retrieving revision 1.32
diff -u -u -r1.32 Makefile.in
--- support/Makefile.in 19 Jan 2002 05:44:04 -0000      1.32
+++ support/Makefile.in 21 Mar 2002 20:16:36 -0000
@@ -13,6 +13,7 @@

 install:
        @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir)
+       @test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir)
        @test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir)
        @cp -p $(top_builddir)/server/httpd.exp $(libexecdir)
        @for i in apxs apachectl dbmmanage; do \