diff options
author | Jeff Trawick <trawick@apache.org> | 2004-03-29 02:11:42 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2004-03-29 02:11:42 +0200 |
commit | 4ece13d3d78ff465e1dbb11fa3f1e47c3b55668d (patch) | |
tree | 345f21fe24023c2027fec512234d468f05667b70 /build | |
parent | translate the outofdate message (diff) | |
download | apache2-4ece13d3d78ff465e1dbb11fa3f1e47c3b55668d.tar.xz apache2-4ece13d3d78ff465e1dbb11fa3f1e47c3b55668d.zip |
mod_so shows up in BUILTIN_LIBS differently now
this fixes "make install" processing of DSOs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103181 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/special.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/special.mk b/build/special.mk index f6ee267578..87a2e67bcb 100644 --- a/build/special.mk +++ b/build/special.mk @@ -25,7 +25,7 @@ INSTALL_TARGETS = install-modules install-modules: @test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir) @builtin='$(BUILTIN_LIBS)'; \ - has_mod_so=`echo $$builtin|sed 's/^.*libso.*$$/has_mod_so/'`; \ + has_mod_so=`echo $$builtin|sed 's/^.*libmod_so.*$$/has_mod_so/'`; \ if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \ list='$(shared)'; \ for i in $$list; do \ |