diff options
author | 2005-04-28 01:47:04 +0000 | |
---|---|---|
committer | 2005-04-28 01:47:04 +0000 | |
commit | 3dbf5057c4285d0a0b9eba7bd25a7f50fc585418 (patch) | |
tree | cc8fe233eaf4178ab3a2c1c384319a8e52e9a216 | |
parent | cp -> $CP rm -> $RM touch -> $TOUCH etc... #90643 (diff) | |
download | gcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.tar.gz gcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.tar.bz2 gcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.zip |
cp -a -> cp -pP #90643
-rwxr-xr-x | gcc-config | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.10,v 1.9 2005/04/28 01:44:44 vapier Exp $ +# $Header: gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.10,v 1.10 2005/04/28 01:47:04 vapier Exp $ trap ":" INT QUIT TSTP @@ -243,7 +243,7 @@ switch_profile() { for gcclib in gcc_s unwind ; do if [[ -e ${ROOT}/${LDPATH}/${multildir}/lib${gcclib}.so ]]; then ${RM} -f "${ROOT}/${libdir}"/lib${gcclib}.so* - ${CP} -a "${ROOT}/${LDPATH}/${multilibdir}"/lib${gcclib}.so* "${ROOT}/${libdir}"/ + ${CP} -pP "${ROOT}/${LDPATH}/${multilibdir}"/lib${gcclib}.so* "${ROOT}/${libdir}"/ fi done done |