From: Greg Ames Date: Wed, 20 Mar 2002 16:05:33 +0000 (+0000) Subject: OS/390: install apachecore.[dll|x] in lib/ rather than bin/ . X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ab89404e757fc85eca251ea809e1ce749dc3543;p=apache OS/390: install apachecore.[dll|x] in lib/ rather than bin/ . The LIBPATH env var already must contain the path to lib/ in order to pick up apr and apr-util. If we install the core dll there as well, LIBPATH becomes simpler. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94053 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index 3154be0d0c..7d255e0ebf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -132,7 +132,7 @@ install-other: @for ext in dll x; do \ file=apachecore.$$ext; \ if test -f $$file; then \ - cp -p $$file $(bindir); \ + cp -p $$file $(libdir); \ fi; \ done; \ file=httpd.dll; \ diff --git a/acinclude.m4 b/acinclude.m4 index 38c5e58698..2861238bbd 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -47,6 +47,7 @@ AC_DEFUN(APACHE_GEN_CONFIG_VARS,[ APACHE_SUBST(datadir) APACHE_SUBST(localstatedir) APACHE_SUBST(mandir) + APACHE_SUBST(libdir) APACHE_SUBST(libexecdir) APACHE_SUBST(htdocsdir) APACHE_SUBST(manualdir)