diff options
author | Aaron Bannert <aaron@apache.org> | 2001-10-16 17:51:11 +0000 |
---|---|---|
committer | Aaron Bannert <aaron@apache.org> | 2001-10-16 17:51:11 +0000 |
commit | e177d373be8b0572188c233bcf5bfceca9a6d0bb (patch) | |
tree | 809f26b3b77d86112b68094bbfe3b06ef57fe33b /support/Makefile.in | |
parent | 9d7befd3f6ab46282fd07509b61c6642cb352d60 (diff) | |
download | httpd-e177d373be8b0572188c233bcf5bfceca9a6d0bb.tar.gz |
In one target we weren't always creating the $libexecdir
($prefix/modules) directory, and in another we were assuming that the
directory existed. Now we always create it in the first target, and we
check that it exists in the second.
This fixes a bug where httpd.exp would be installed as a _file_ called
$prefix/modules.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91492 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 20cdc156fb..7cfddfbb9a 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -13,6 +13,7 @@ include $(top_builddir)/build/rules.mk install: @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir) + @test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir) @cp -p $(top_builddir)/server/httpd.exp $(libexecdir) @for i in apxs apachectl dbmmanage; do \ if test -f "$(builddir)/$$i"; then \ |