[SCM] Debian Live build scripts branch, master, updated. 1.0.1-1-76-g4de79b6

Daniel Baumann daniel at debian.org
Mon Nov 3 11:16:01 UTC 2008


The following commit has been merged in the master branch:
commit 1148e963dc60de44a5bb898d73dc2de9b0328ee1
Author: Daniel Baumann <daniel at debian.org>
Date:   Sat Nov 1 15:10:34 2008 +0100

    Generalizing internal LH_BREAKPOINTS variable.

diff --git a/functions/arguments.sh b/functions/arguments.sh
index 3d0d869..70f397c 100755
--- a/functions/arguments.sh
+++ b/functions/arguments.sh
@@ -23,7 +23,7 @@ Arguments ()
 	do
 		case "${1}" in
 			--breakpoints)
-				LH_BREAKPOINTS="enabled"
+				_BREAKPOINTS="enabled"
 				shift
 				;;
 
diff --git a/functions/breakpoints.sh b/functions/breakpoints.sh
index feaaea7..1e4fdb2 100755
--- a/functions/breakpoints.sh
+++ b/functions/breakpoints.sh
@@ -11,7 +11,7 @@ Breakpoint ()
 {
 	NAME="${1}"
 
-	if [ "${LH_BREAKPOINTS}" = "enabled" ]
+	if [ "${_BREAKPOINTS}" = "enabled" ]
 	then
 		Echo_message "Waiting at %s" "${NAME}"
 		read WAIT
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 281bed4..4592d21 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -220,7 +220,7 @@ Set_defaults ()
 	fi
 
 	# Setting live helper options
-	LH_BREAKPOINTS="${LH_BREAKPOINTS:-disabled}"
+	_BREAKPOINTS="${_BREAKPOINTS:-disabled}"
 	_DEBUG="${_DEBUG:-disabled}"
 	_FORCE="${_FORCE:-disabled}"
 	_QUIET="${_QUIET:-disabled}"
diff --git a/helpers/lh_config b/helpers/lh_config
index 480f3f3..5911a91 100755
--- a/helpers/lh_config
+++ b/helpers/lh_config
@@ -317,11 +317,6 @@ Local_arguments ()
 				shift 2
 				;;
 
-			--breakpoints)
-				LH_BREAKPOINTS="enabled"
-				shift
-				;;
-
 			-v|--version)
 				Version
 				shift
@@ -643,7 +638,7 @@ Local_arguments ()
 
 			# other
 			--breakpoints)
-				LH_BREAKPOINTS="enabled"
+				_BREAKPOINTS="enabled"
 				shift
 				;;
 
@@ -834,9 +829,9 @@ LH_TEMPLATES="${LH_TEMPLATES}"
 
 # Live-helper options
 
-# \$LH_BREAKPOINTS: enable breakpoints
-# (Default: ${LH_BREAKPOINTS})
-#LH_BREAKPOINTS="${LH_BREAKPOINTS}"
+# \$_BREAKPOINTS: enable breakpoints
+# (Default: ${_BREAKPOINTS})
+#_BREAKPOINTS="${_BREAKPOINTS}"
 
 # \$_DEBUG: enable debug
 # (Default: ${_DEBUG})

-- 
Debian Live build scripts



More information about the debian-live-changes mailing list