diff options
author | Jeff Trawick <trawick@apache.org> | 2000-12-12 13:51:19 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-12-12 13:51:19 +0100 |
commit | dfd30ade17870811e4b678d7467a2ae607c6d77d (patch) | |
tree | f1d403c6ccee844a3dc80a38f858b51a94850093 /build | |
parent | Fix a comparison with ENOENT which was accidently broken during (diff) | |
download | apache2-dfd30ade17870811e4b678d7467a2ae607c6d77d.tar.xz apache2-dfd30ade17870811e4b678d7467a2ae607c6d77d.zip |
Get "make install" to install DSOs again.
static has just the list of static modules for this directory, so
in all but one of our module directories mod_so won't be in this
list, preventing us from thinking this is a DSO build.
BUILTIN_LIBS is always a valid check since it is the entire list
of modules.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87299 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/special.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/special.mk b/build/special.mk index ca5f5d19d8..1f34347124 100644 --- a/build/special.mk +++ b/build/special.mk @@ -62,8 +62,8 @@ install_targets = install-modules install-modules: @shared='$(shared)'; \ - static='$(static)'; \ - has_mod_so=`echo $$static|sed 's/^.*mod_so.*$$/has_mod_so/'`; \ + builtin='$(BUILTIN_LIBS)'; \ + has_mod_so=`echo $$builtin|sed 's/^.*mod_so.*$$/has_mod_so/'`; \ if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \ $(MKINSTALLDIRS) $(libexecdir); \ for i in $$shared; do \ |