corrected install program for Mac OS X (use AC_PROG_INSTALL but add -p option
to INSTALL_PROGRAM and INSTALL_DATA in order to preserve modification dates) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12295 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
11
configure.in
11
configure.in
@@ -1458,20 +1458,17 @@ AC_CHECK_PROG(AR, ar, ar, ar)
|
|||||||
|
|
||||||
dnl install checks
|
dnl install checks
|
||||||
dnl defines INSTALL with the appropriate command
|
dnl defines INSTALL with the appropriate command
|
||||||
|
AC_PROG_INSTALL
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
|
|
||||||
dnl The other BSD's should probably go in here too, since this is
|
dnl The other BSD's should probably go in here too, since this is
|
||||||
dnl to workaround a strange static lib BSDism.
|
dnl to workaround a strange static lib BSDism.
|
||||||
powerpc-*-darwin* )
|
powerpc-*-darwin* )
|
||||||
INSTALL="cp -p"
|
INSTALL_PROGRAM="$INSTALL_PROGRAM -p"
|
||||||
INSTALL_PROGRAM="cp -p"
|
INSTALL_DATA="$INSTALL_DATA -p"
|
||||||
INSTALL_DATA="cp -p"
|
|
||||||
AC_SUBST(INSTALL)
|
|
||||||
AC_SUBST(INSTALL_PROGRAM)
|
|
||||||
AC_SUBST(INSTALL_DATA)
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
AC_PROG_INSTALL
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
dnl strip command
|
dnl strip command
|
||||||
|
Reference in New Issue
Block a user