[SCM] Debian Live build scripts branch, master, updated. 1.0.3-2-26-g1c412f1

Daniel Baumann daniel at debian.org
Thu Mar 12 18:05:49 UTC 2009


The following commit has been merged in the master branch:
commit 1c412f1727f0269bb07d00a79343e9f9463dd9f6
Author: Daniel Baumann <daniel at debian.org>
Date:   Thu Mar 12 19:00:50 2009 +0100

    Only trying to copy syslinux english templates if they are actually available.

diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux
index f5dea99..42eb1d5 100755
--- a/helpers/lh_binary_syslinux
+++ b/helpers/lh_binary_syslinux
@@ -195,7 +195,10 @@ Copy_syslinux_templates ()
 	then
 		cp -r "${TEMPLATES}"/"${LH_LANGUAGE}"/* ${SCREEN_PATH}
 	else
-		cp -r "${TEMPLATES}"/en/* ${SCREEN_PATH}
+		if [ -d "${TEMPLATES}"/en/* ]
+		then
+			cp -r "${TEMPLATES}"/en/* ${SCREEN_PATH}
+		fi
 	fi
 
 	for FILE in ${SCREEN_PATH}/*.live

-- 
Debian Live build scripts



More information about the debian-live-changes mailing list