diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:12 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:26 +0100 |
commit | b6a1dd22a84fbbb11b953c3e20d07c7fadc6e64c (patch) | |
tree | 4f0315d0f2a248840be527cfa156da5d04b4a9f4 /helpers/lh_binary_syslinux | |
parent | 9a03b166882cf68ff34e60fb26b6d460842072be (diff) | |
download | vyos-live-build-b6a1dd22a84fbbb11b953c3e20d07c7fadc6e64c.tar.gz vyos-live-build-b6a1dd22a84fbbb11b953c3e20d07c7fadc6e64c.zip |
Fixed wrong sed call.
Diffstat (limited to 'helpers/lh_binary_syslinux')
-rwxr-xr-x | helpers/lh_binary_syslinux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index b8ff6374d..946819e87 100755 --- a/helpers/lh_binary_syslinux +++ b/helpers/lh_binary_syslinux @@ -486,7 +486,7 @@ case "${LH_BINARY_IMAGES}" in if [ "${LH_SYSLINUX_SPLASH}" = "none" ] then rm -f tftpboot/pxelinux.cfg/splash.rle - sed -e "s/.*splash.*//" tftpboot/pxelinux.cfg/boot.txt + sed -i -e "s/.*splash.*//" tftpboot/pxelinux.cfg/boot.txt else cp -f "${LH_SYSLINUX_SPLASH}" tftpboot/pxelinux.cfg/splash.rle fi @@ -580,7 +580,7 @@ case "${LH_BINARY_IMAGES}" in if [ "${LH_SYSLINUX_SPLASH}" = "none" ] then rm -f "${DESTDIR}"/splash.rle - sed -e "s/.*splash.*//" "${DESTDIR}"/boot.txt + sed -i -e "s/.*splash.*//" "${DESTDIR}"/boot.txt else cp -f "${LH_SYSLINUX_SPLASH}" "${DESTDIR}"/splash.rle fi |