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-Tag: 2.0.34~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8c867e651297f0491715b115ce5ceed9f362794;p=thirdparty%2Fapache%2Fhttpd.git 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 3154be0d0c9..7d255e0ebf3 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 38c5e58698a..2861238bbde 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)