[SCM] live-build branch, debian, updated. debian/2.0_a27-1-7-g2df5d8b

Daniel Baumann daniel at debian.org
Mon Sep 13 19:37:08 UTC 2010


The following commit has been merged in the debian branch:
commit 3bb5fe0ba240933b649357ccb1be27814133a0e2
Author: Daniel Baumann <daniel at debian.org>
Date:   Mon Sep 13 21:20:54 2010 +0200

    Avoid running helpers twice when using auto (Closes: #584884).

diff --git a/scripts/build/lb_build b/scripts/build/lb_build
index 0638629..332ca55 100755
--- a/scripts/build/lb_build
+++ b/scripts/build/lb_build
@@ -25,6 +25,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/build ]
 then
 	Echo_message "Executing auto/build script."
 	./auto/build ${@}
+	exit ${?}
 fi
 
 if [ "${1}" = "noauto" ]
diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean
index f734a50..e5ae3df 100755
--- a/scripts/build/lb_clean
+++ b/scripts/build/lb_clean
@@ -18,6 +18,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/clean ]
 then
 	Echo_message "Executing auto/clean script."
 	./auto/clean ${@}
+	exit ${?}
 fi
 
 if [ "${1}" = "noauto" ]
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index 3cf4a6d..afb6935 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -18,6 +18,7 @@ if [ "${1}" != "noauto" ] && [ -x auto/config ]
 then
 	Echo_message "Executing auto/config script."
 	./auto/config ${@}
+	exit ${?}
 fi
 
 if [ "${1}" = "noauto" ]

-- 
live-build



More information about the debian-live-changes mailing list