summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-06-05 11:54:31 +0000
committerOlivier Blin <oblin@mandriva.com>2007-06-05 11:54:31 +0000
commit7075544dab2a560c7f9887038515526c3e79816b (patch)
tree70fc713e90bd27da35ee90ecaabcb2b7f6b25882
parent428eebefa1c4dd22e1fecefb99ca7731bf57f2b7 (diff)
downloaddraklive-7075544dab2a560c7f9887038515526c3e79816b.tar
draklive-7075544dab2a560c7f9887038515526c3e79816b.tar.gz
draklive-7075544dab2a560c7f9887038515526c3e79816b.tar.bz2
draklive-7075544dab2a560c7f9887038515526c3e79816b.tar.xz
draklive-7075544dab2a560c7f9887038515526c3e79816b.zip
do not copy extra media files in boot images
-rwxr-xr-xdraklive10
1 files changed, 5 insertions, 5 deletions
diff --git a/draklive b/draklive
index 9d704f0..c01ee46 100755
--- a/draklive
+++ b/draklive
@@ -1018,11 +1018,11 @@ sub create_cdrom_master {
'=' .
get_builddir($live) . $live->{prefix}{build}{loopbacks} . $_;
} list_selected_loopbacks($live),
- ),
- if_($live->{media}{files},
- map {
- $_ . '=' . get_builddir($live) . $live->{prefix}{build}{files} . '/' . $_;
- } all(get_builddir($live) . $live->{prefix}{build}{files})
+ if_($live->{media}{files},
+ map {
+ $_ . '=' . get_builddir($live) . $live->{prefix}{build}{files} . '/' . $_;
+ } all(get_builddir($live) . $live->{prefix}{build}{files})
+ ),
),
) or die "unable to run genisoimage";
run_('mkcd', '--addmd5', $dest) if $dest;