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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe5a481475265d2c01b4dcf7079fb13fc8ce23ec;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 ;; *)