diff options
author | Dan McGee <dan@archlinux.org> | 2007-10-14 22:12:53 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-14 22:12:53 -0500 |
commit | 47d1d2b0f74ac35f1af64c28fa80416eb65981e6 (patch) | |
tree | b0e062e3a292c4b743e7e57346dd177cb593e202 | |
parent | ef89b8a29f84db65cdd8fbcf0049911cd80ed5a2 (diff) | |
download | archiso32-47d1d2b0f74ac35f1af64c28fa80416eb65981e6.tar.xz |
Ensure the default config is copied into the ISO with correct perms
Signed-off-by: Dan McGee <dan@archlinux.org>
-rwxr-xr-x | mkarchiso | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then find "${instroot}/boot" -name *.img -delete echo "Applying default configuration for the Arch ISO" - cp -rfa ${DEF_CONFIG_DIR}/* "${instroot}" + cp -ra --remove-destination --no-preserve=ownership ${DEF_CONFIG_DIR}/* "${instroot}" echo "Copyright (C) 2007, Arch Linux (Judd Vinet)" > "${instroot}/etc/copyright" |