summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Müller2006-12-19 13:01:32 +0100
committerLars Müller2006-12-19 13:01:32 +0100
commita8dbc9152a5a8dbd9fc11ede3b569ef7d48d757a (patch)
tree83516b6f4f7719ad3e6faa8b7ef886a2489f5105
parentCheck if BOOTSTRAP_PATH is set. Else we might run in trouble on Debian (diff)
downloadcore-a8dbc9152a5a8dbd9fc11ede3b569ef7d48d757a.tar.gz
core-a8dbc9152a5a8dbd9fc11ede3b569ef7d48d757a.tar.xz
core-a8dbc9152a5a8dbd9fc11ede3b569ef7d48d757a.zip
Use cp -pr instead of cp -a as we might not have GNU cp.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@574 95ad53e4-c205-0410-b2fa-d234c58c8868
-rwxr-xr-xinstaller/slxossetup2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/slxossetup b/installer/slxossetup
index 48b508cb..cff7ee13 100755
--- a/installer/slxossetup
+++ b/installer/slxossetup
@@ -49,7 +49,7 @@ function install_prereq_file
{
# Install prerequired files
if test -d "${SLX_SYSTEM_CONFIG_PATH}/prereqfiles"; then
- cp -a "${SLX_SYSTEM_CONFIG_PATH}"/prereqfiles/* "${SLX_STAGE1_PATH}"
+ cp -pr "${SLX_SYSTEM_CONFIG_PATH}"/prereqfiles/* "${SLX_STAGE1_PATH}"
find "${SLX_STAGE1_PATH}" -type d -name .svn -print0 | \
xargs -0 rm -rf
fi