use 'cp -fp' instead of 'cp -p' to install programs/data under Mac OS X

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot 2001-11-04 13:59:15 +00:00
parent 174d5c21ca
commit eb99ae0b77
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -8570,8 +8570,8 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
case "${host}" in
powerpc-*-darwin* )
INSTALL_PROGRAM="cp -p"
INSTALL_DATA="cp -p"
INSTALL_PROGRAM="cp -fp"
INSTALL_DATA="cp -fp"
;;
*)
;;

View File

@ -1467,8 +1467,8 @@ case "${host}" in
dnl to workaround a strange static lib BSDism.
dnl Mac OS X install seems to ignore -p option...
powerpc-*-darwin* )
INSTALL_PROGRAM="cp -p"
INSTALL_DATA="cp -p"
INSTALL_PROGRAM="cp -fp"
INSTALL_DATA="cp -fp"
;;
*)
;;