diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-19 18:03:19 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:04 +0200 |
commit | df797b7cdad2bb82e9f5093a992d5aa182af6d17 (patch) | |
tree | 6cdff9fe2af1492b32b0bec14fcd221d1647b68a /scripts | |
parent | 07ffebc750d370e2860433a2f1fd624149b7fe04 (diff) | |
download | vyos-live-build-df797b7cdad2bb82e9f5093a992d5aa182af6d17.tar.gz vyos-live-build-df797b7cdad2bb82e9f5093a992d5aa182af6d17.zip |
Making xorriso option handling a bit more readable.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/binary_iso | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binary_iso b/scripts/build/binary_iso index 0792d9dfe..fedeb9865 100755 --- a/scripts/build/binary_iso +++ b/scripts/build/binary_iso @@ -73,7 +73,7 @@ then fi # Handle xorriso generic options -XORRISO_OPTIONS="-as mkisofs -r -J -joliet-long -l -cache-inodes" +XORRISO_OPTIONS="-r -J -joliet-long -l -cache-inodes" # Handle xorriso live-build specific options if [ "${LIVE_IMAGE_TYPE}" = "iso-hybrid" ] @@ -199,7 +199,7 @@ fi cat >> binary.sh << EOF -xorriso ${XORRISO_OPTIONS} -o ${IMAGE} binary +xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary EOF case "${LB_BUILD_WITH_CHROOT}" in |