diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2007-10-02 20:10:20 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-10-03 06:21:36 +0200 |
commit | 0ae32ca1b9216db39b6f8859f7dbb297a3e3ee24 (patch) | |
tree | cb3a9feba1bd9c219b5352a0d7ebd7c70dccbf89 | |
parent | ae7d46ca728ca4369981f5601bd5962e186e2248 (diff) | |
download | vyos-live-build-0ae32ca1b9216db39b6f8859f7dbb297a3e3ee24.tar.gz vyos-live-build-0ae32ca1b9216db39b6f8859f7dbb297a3e3ee24.zip |
syslinux: fix memcheck path since it was using the wrong path
-rwxr-xr-x | helpers/lh_binary_syslinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index 6b28fddb3..b6cb84560 100755 --- a/helpers/lh_binary_syslinux +++ b/helpers/lh_binary_syslinux @@ -75,7 +75,7 @@ Syslinux_memtest_entry () KERNEL="${3}" # syslinux << 3.36 lacks support to file/path - if [ "$(basename ${DESTDIR_LIVE})" = "binary" ] + if [ "$(basename ${DESTDIR_LIVE})" != "binary" ] then KERNEL="${DIRECTORY}/${KERNEL}" fi |