From: Eric Covener Date: Mon, 24 Jun 2013 21:48:50 +0000 (+0000) Subject: Use cp on AIX too. /usr/bin/install isn't compatible on recent systems X-Git-Tag: 2.5.0-alpha~5298 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cc32d26f6c1e2361c033125722147dd53b1c8b7;p=thirdparty%2Fapache%2Fhttpd.git Use cp on AIX too. /usr/bin/install isn't compatible on recent systems and it's a pain to install and force /opt/freeware/bin. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1496230 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 0aacf155c55..bff69119d16 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) AIX: Install DSO's with "cp" instead of "install" in instdso.sh + [Eric Covener] + *) mod_ldap: Retry transient LDAP connection errors when they occur during the authorization stage. [Eric Covener] diff --git a/build/instdso.sh b/build/instdso.sh index 89aa32d0108..2e1506ca29a 100755 --- a/build/instdso.sh +++ b/build/instdso.sh @@ -55,7 +55,7 @@ then fi case $SYS in - SunOS|HP-UX) + SunOS|HP-UX|AIX) INSTALL_CMD=cp ;; *)