summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-07-30 04:31:41 +0200
committerDaniel Baumann <daniel@debian.org>2010-07-30 04:31:41 +0200
commite7909fdb4185fb2ad96cd9fc7dc140b1de54dbeb (patch)
tree1e323ad18322d4691cdc8ef92929b1aa520a0ad0
parent51e3759a5f99ecdddabe1f3869cda9656914c175 (diff)
downloadvyos-live-build-e7909fdb4185fb2ad96cd9fc7dc140b1de54dbeb.tar.gz
vyos-live-build-e7909fdb4185fb2ad96cd9fc7dc140b1de54dbeb.zip
Making cp calls for syslinux templates recursive, thanks to Tiago Bortoletto Vaz <tiago@debian.org>.
-rwxr-xr-xscripts/build/binary_syslinux4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux
index 43c0b5457..e4293bb91 100755
--- a/scripts/build/binary_syslinux
+++ b/scripts/build/binary_syslinux
@@ -193,9 +193,9 @@ Copy_syslinux_templates ()
if [ "${LH_SYSLINUX_MENU}" = "false" ]
then
- cp "${TEMPLATES}"/normal/* ${SCREEN_PATH}
+ cp -r "${TEMPLATES}"/normal/* ${SCREEN_PATH}
else
- cp "${TEMPLATES}"/menu/* ${SCREEN_PATH}
+ cp -r "${TEMPLATES}"/menu/* ${SCREEN_PATH}
case "${LH_SYSLINUX_MENU}" in
gfxboot)