summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-28 01:47:04 +0000
committerMike Frysinger <vapier@gentoo.org>2005-04-28 01:47:04 +0000
commit3dbf5057c4285d0a0b9eba7bd25a7f50fc585418 (patch)
treecc8fe233eaf4178ab3a2c1c384319a8e52e9a216
parentcp -> $CP rm -> $RM touch -> $TOUCH etc... #90643 (diff)
downloadgcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.tar.gz
gcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.tar.bz2
gcc-config-3dbf5057c4285d0a0b9eba7bd25a7f50fc585418.zip
cp -a -> cp -pP #90643
-rwxr-xr-xgcc-config4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc-config b/gcc-config
index be25483..b87984c 100755
--- a/gcc-config
+++ b/gcc-config
@@ -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