Keep file permissions when generating files from .in files.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@786 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2003-02-20 00:41:33 +00:00
parent 03b6d952b5
commit 2ff6ef2f57
+2 -2
View File
@@ -204,7 +204,7 @@ build_install() {
if [ ! -d "$DESTDIR" ]; then
mkdir -p -- "$DESTDIR"
fi
cp -r -- "$SRC" "$DEST"
cp -pr -- "$SRC" "$DEST"
done
echo "Installing binaries..." 2>&1
@@ -217,7 +217,7 @@ build_install() {
if [ ! -d "$DESTDIR" ]; then
mkdir -p -- "$DESTDIR"
fi
cp -r -- "$SRC" "$DEST"
cp -pr -- "$SRC" "$DEST"
done
}