diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 13:59:19 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 13:59:19 +0200 |
commit | 23c269f3afba1449f2ff6352bf9504fbdba582f8 (patch) | |
tree | 3065a49e772a86e9b9727402b838daf4b7963421 | |
parent | 16b85ffe14a24a693cfdafa2d100f96d5d65cf0a (diff) | |
download | vyos-live-build-23c269f3afba1449f2ff6352bf9504fbdba582f8.tar.gz vyos-live-build-23c269f3afba1449f2ff6352bf9504fbdba582f8.zip |
Simplyfing LH_BASE calls.
-rwxr-xr-x | helpers/lh_binary_debian-installer | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 83c8be30e..39cd0a126 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -372,9 +372,9 @@ then fi # Excluding udebs -grep -v "^#" ${LH_BASE:-/usr/share/live-helper}/data/debian-cd/"${LH_DISTRIBUTION}"/udeb_exclude > exclude -grep -v "^#" ${LH_BASE:-/usr/share/live-helper}/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs >> exclude -grep -v "^#" ${LH_BASE:-/usr/share/live-helper}/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs-${LH_ARCHITECTURE} >> exclude +grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/udeb_exclude > exclude +grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs >> exclude +grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs-${LH_ARCHITECTURE} >> exclude for EXCLUDE in `cat exclude` do |