diff options
author | Daniel Baumann <daniel@debian.org> | 2012-04-10 10:53:22 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-04-10 10:53:22 +0200 |
commit | 73682ba57a827fab38b8019a35b6d4d8f3cb32d8 (patch) | |
tree | 3e8519f7cd829aa7031b0d04b679357f16963e94 | |
parent | 788e5d6dacae947ffb1aba68cfa6299f77f6b92b (diff) | |
download | vyos-live-build-73682ba57a827fab38b8019a35b6d4d8f3cb32d8.tar.gz vyos-live-build-73682ba57a827fab38b8019a35b6d4d8f3cb32d8.zip |
Correcting regression in the form of a wrong path in binary_syslinux for syslinux theme packages.
-rwxr-xr-x | scripts/build/lb_binary_syslinux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux index 08d725890..391c86026 100755 --- a/scripts/build/lb_binary_syslinux +++ b/scripts/build/lb_binary_syslinux @@ -100,10 +100,10 @@ case "${LB_BUILD_WITH_CHROOT}" in if [ "${LB_SYSLINUX_THEME}" != "live-build" ] then - if [ ! -e /usr/lib/syslinux/themes/${LB_SYSLINUX_THEME} ] + if [ ! -e /usr/share/syslinux/themes/${LB_SYSLINUX_THEME} ] then # syslinux-theme - Echo_error "/usr/lib/syslinux/themes/${LB_SYSLINUX_THEME} - no such directory." + Echo_error "/usr/share/syslinux/themes/${LB_SYSLINUX_THEME} - no such directory." exit 1 fi fi |