diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-10-31 11:24:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-10-31 11:24:28 +0000 |
commit | c9bbe7d06287fbcd42658976530ba107397797b4 (patch) | |
tree | 7c7a8697568b1f7848c79f491cf04efc08fd7c03 /move | |
parent | e66249dbccb2a68570cb7f528e64e83535877ab7 (diff) | |
download | drakx-c9bbe7d06287fbcd42658976530ba107397797b4.tar drakx-c9bbe7d06287fbcd42658976530ba107397797b4.tar.gz drakx-c9bbe7d06287fbcd42658976530ba107397797b4.tar.bz2 drakx-c9bbe7d06287fbcd42658976530ba107397797b4.tar.xz drakx-c9bbe7d06287fbcd42658976530ba107397797b4.zip |
use mkisofs -R instead of -r so that setuid is still there
Diffstat (limited to 'move')
-rw-r--r-- | move/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/move/Makefile b/move/Makefile index 9bd38fd9a..426e038e1 100644 --- a/move/Makefile +++ b/move/Makefile @@ -80,9 +80,9 @@ clean: %.clp: % if [ -e $<.sort ]; then \ - mkisofs -r -sort $<.sort $< | create_compressed_fs - 65536 $@ 2000 2>/dev/null ; \ + mkisofs -R -sort $<.sort $< | create_compressed_fs - 65536 $@ 2000 2>/dev/null ; \ else \ - mkisofs -r $< | create_compressed_fs - 65536 $@ 2000 2>/dev/null ; \ + mkisofs -R $< | create_compressed_fs - 65536 $@ 2000 2>/dev/null ; \ fi # touch r/isolinux/boot.cat ; find r/isolinux -type f -printf '%p 100\n' > r.sort ; echo 'r/isolinux/live_tree_boot.clp 5' >> r.sort |