diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2007-10-02 20:10:20 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:27 +0100 |
commit | 3d7ef5654bb66df5821e0831e9f8e64e62cfcc20 (patch) | |
tree | cb3a9feba1bd9c219b5352a0d7ebd7c70dccbf89 /helpers | |
parent | 1fff7803f848b82e24ac3abe7f8693c243d88169 (diff) | |
download | vyos-live-build-3d7ef5654bb66df5821e0831e9f8e64e62cfcc20.tar.gz vyos-live-build-3d7ef5654bb66df5821e0831e9f8e64e62cfcc20.zip |
syslinux: fix memcheck path since it was using the wrong path
Diffstat (limited to 'helpers')
-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 |