diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-16 10:48:16 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-16 10:48:16 +0100 |
commit | 0a5065a817e5be289354400490cbe054ea3778ed (patch) | |
tree | 8ab290a79ca163d8ab3fb026a0b3c4160fe6454f /helpers | |
parent | 712360df91fb43614a8912a5f0e38e6f7c4c073b (diff) | |
download | vyos-live-build-0a5065a817e5be289354400490cbe054ea3778ed.tar.gz vyos-live-build-0a5065a817e5be289354400490cbe054ea3778ed.zip |
Removing surrounded braces from LH_BOOTAPPEND_INSTALL - it is expanded by sed, not the shell.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_grub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_grub b/helpers/lh_binary_grub index 74e375ee3..d0b13ec3a 100755 --- a/helpers/lh_binary_grub +++ b/helpers/lh_binary_grub @@ -89,7 +89,7 @@ Grub_install_entry () fi LINUX_INSTALL="${LINUX_INSTALL}\ntitle\t\tDebian GNU/Linux - ${LABEL}" - LINUX_INSTALL="${LINUX_INSTALL}\nkernel\t\t/${KERNEL} ${APPEND} ${LH_BOOTAPPEND_INSTALL}" + LINUX_INSTALL="${LINUX_INSTALL}\nkernel\t\t/${KERNEL} ${APPEND} LH_BOOTAPPEND_INSTALL" LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}" } |