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/22 18:54:24 UTC

[PATCH] ensure all directories are created before installing to them.

Reposting with a sane title. I really ought to work out how to write in
English post 8pm.
-Thom

* Thom May (thom@planetarytramp.net) wrote :
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 \

RE: [PATCH] ensure all directories are created before installing to them.

Posted by Sander Striker <st...@apache.org>.
> From: Thom May [mailto:thom@planetarytramp.net]
> Sent: 22 March 2002 18:54
> To: HTTPD Dev List
> Subject: [PATCH] ensure all directories are created before installing to
> them.
> 
> 
> Reposting with a sane title. I really ought to work out how to write in
> English post 8pm.
> -Thom
> 
> * Thom May (thom@planetarytramp.net) wrote :
> 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

Committed.  Thanks!

Sander