[SCM] Debian Live build scripts branch, master, updated. 1.0.2-4-44-gae0be51

Daniel Baumann daniel at debian.org
Sat Jan 31 02:40:10 UTC 2009


The following commit has been merged in the master branch:
commit ae0be51aa89986849a417e36beca72cc97630cb4
Author: Daniel Baumann <daniel at debian.org>
Date:   Sat Jan 31 03:38:58 2009 +0100

    Removing shell specific extensions and call of scripts/config and scripts/clean, thanks to Tzafrir Cohen <tzafrir.cohen at xorcom.com>.

diff --git a/helpers/lh_clean b/helpers/lh_clean
index b4cf122..2507424 100755
--- a/helpers/lh_clean
+++ b/helpers/lh_clean
@@ -10,9 +10,9 @@
 set -e
 
 # Read meta config
-if [ "${1}" != "autoconfig" ] && [ -e scripts/clean.sh ]
+if [ "${1}" != "autoconfig" ] && [ -x scripts/clean ]
 then
-	sh scripts/clean.sh ${@}
+	./scripts/clean ${@}
 else
 	shift
 fi
diff --git a/helpers/lh_config b/helpers/lh_config
index a752f50..ff33de9 100755
--- a/helpers/lh_config
+++ b/helpers/lh_config
@@ -10,9 +10,9 @@
 set -e
 
 # Read meta config
-if [ "${1}" != "autoconfig" ] && [ -e scripts/config.sh ]
+if [ "${1}" != "autoconfig" ] && [ -x scripts/config ]
 then
-	sh scripts/config.sh ${@}
+	./scripts/config ${@}
 else
 	shift
 fi

-- 
Debian Live build scripts



More information about the debian-live-changes mailing list