summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:05:14 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 18:22:27 +0100
commit54c6faef3bd19847bd7fc7ce8fe8e7ee49215201 (patch)
tree00c77f1777d5aaa024fa5a7b5d4657f8ca5fcc3b
parent791c256094789702c8e199ee5b3f2f5e73f186fb (diff)
downloadlive-build-54c6faef3bd19847bd7fc7ce8fe8e7ee49215201.zip
live-build-54c6faef3bd19847bd7fc7ce8fe8e7ee49215201.tar.gz
Respecting LH_QUIET for genisoimage/mkisofs calls, thanks to Justin Pryzby <pryzbyj@justinpryzby.com>.
-rwxr-xr-xhelpers/lh_binary_iso5
-rwxr-xr-xhelpers/lh_source_iso5
2 files changed, 10 insertions, 0 deletions
diff --git a/helpers/lh_binary_iso b/helpers/lh_binary_iso
index 8b00a3d..82ba2a9 100755
--- a/helpers/lh_binary_iso
+++ b/helpers/lh_binary_iso
@@ -67,6 +67,11 @@ then
rm -f binary.iso
fi
+if [ "${LH_QUIET}" = "enabled" ]
+then
+ GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -quiet"
+fi
+
if [ "${LH_VERBOSE}" = "enabled" ]
then
GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -v"
diff --git a/helpers/lh_source_iso b/helpers/lh_source_iso
index b568781..ef7241f 100755
--- a/helpers/lh_source_iso
+++ b/helpers/lh_source_iso
@@ -69,6 +69,11 @@ then
rm -f source.iso
fi
+if [ "${LH_QUIET}" = "enabled" ]
+then
+ GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -quiet"
+fi
+
if [ "${LH_VERBOSE}" = "enabled" ]
then
GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -v"