[SCM] live-build branch, debian-next, updated. debian/3.0_a53-1-2-g513a7b9

Daniel Baumann daniel at debian.org
Thu Jul 19 17:36:51 UTC 2012


The following commit has been merged in the debian-next branch:
commit 513a7b9ffce494c1e64667b7d595d6a318ac80ba
Author: Daniel Baumann <daniel at debian.org>
Date:   Thu Jul 19 19:37:26 2012 +0200

    Fixing up inclusion of functions while allowing local usage of live-build with different file layouts.

diff --git a/bin/lb b/bin/lb
index 6c92b74..821ea24 100755
--- a/bin/lb
+++ b/bin/lb
@@ -11,12 +11,7 @@
 set -e
 
 # Including common functions
-if [ -e "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh ]
-then
-	. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
-else
-	. /usr/lib/live/build.sh
-fi
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
@@ -58,9 +53,10 @@ case "${1}" in
 			fi
 		done
 
-		if [ -x "${LB_BASE}/scripts/build/${COMMAND}" ]
+		if [ -x "${LIVE_BUILD}/scripts/build/${COMMAND}" ]
 		then
-			SCRIPT="${LB_BASE}/scripts/build/${COMMAND}"
+		then
+			SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}"
 		elif [ -x /usr/lib/live/build/${COMMAND} ]
 		then
 			SCRIPT=/usr/lib/live/build/"${COMMAND}"
diff --git a/bin/live-build b/bin/live-build
index bb8d962..94a54c3 100755
--- a/bin/live-build
+++ b/bin/live-build
@@ -23,7 +23,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 if [ -x "$(which man 2>/dev/null)" ]
 then
diff --git a/frontends/cgi/live-build-cgi b/frontends/cgi/live-build-cgi
index 356918f..587be6c 100755
--- a/frontends/cgi/live-build-cgi
+++ b/frontends/cgi/live-build-cgi
@@ -9,7 +9,7 @@
 
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Reading defaults
 if [ -r /etc/default/live-build-cgi ]
diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron
index a81de39..c8d9664 100755
--- a/frontends/cgi/live-build-cgi.cron
+++ b/frontends/cgi/live-build-cgi.cron
@@ -9,7 +9,7 @@
 
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Reading defaults
 if [ -r /etc/default/live-build-cgi ]
diff --git a/functions/common.sh b/functions/common.sh
index 538d180..19c3bc0 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
 
 
 PROGRAM="live-build"
-VERSION="$(cat ${LB_BASE}/VERSION)"
+VERSION="$(if [ -e ${LIVE_BUILD}/VERSION ]; then cat ${LIVE_BUILD}/VERSION; else cat /usr/share/live/build/VERSION; fi)"
 CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
 
 PATH="${PWD}/local/scripts:${PATH}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 5e06c48..c9b9e00 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -14,12 +14,9 @@ Set_defaults ()
 
 	if [ -e local/live-build ]
 	then
-		LB_BASE="${LB_BASE:-${PWD}/local/live-build}"
+		LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}"
 		PATH="${PWD}/local/live-build/scripts/build:${PATH}"
-		export LB_BASE PATH
-	else
-		LB_BASE="${LB_BASE:-/usr/share/live/build}"
-		export LB_BASE
+		export LIVE_BUILD PATH
 	fi
 
 	# Setting system type
@@ -322,10 +319,20 @@ Set_defaults ()
 	esac
 
 	# Setting includes
-	LB_INCLUDES="${LB_INCLUDES:-${LB_BASE}/includes}"
+	if [ -n "${LIVE_BUID}" ]
+	then
+		LB_INCLUDES="${LB_INCLUDES:-${LIVE_BUILD}/includes}"
+	else
+		LB_INCLUDES="${LB_INCLUDES:-/usr/share/live/build/includes}"
+	fi
 
 	# Setting templates
-	LB_TEMPLATES="${LB_TEMPLATES:-${LB_BASE}/templates}"
+	if [ -n "${LIVE_BUID}" ]
+	then
+		LB_TEMPLATES="${LB_TEMPLATES:-${LIVE_BUILD}/templates}"
+	else
+		LB_TEMPLATES="${LB_TEMPLATES:-/usr/share/live/build/templates}"
+	fi
 
 	# Setting live build options
 	_BREAKPOINTS="${_BREAKPOINTS:-false}"
diff --git a/functions/packagelists.sh b/functions/packagelists.sh
index bb16bb2..0e2d5ff 100755
--- a/functions/packagelists.sh
+++ b/functions/packagelists.sh
@@ -22,7 +22,7 @@ Expand_packagelist ()
 		_LB_NESTED=0
 		_LB_ENABLED=1
 
-		for _LB_SEARCH_PATH in ${@} "${LB_BASE:-/usr/share/live/build}/package-lists"
+		for _LB_SEARCH_PATH in ${@} "${LIVE_BUILD}/package-lists" /usr/share/live/build/package-lists
 		do
 			if [ -e "${_LB_SEARCH_PATH}/${_LB_LIST_NAME}" ]
 			then
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
deleted file mode 100644
index e952304..0000000
--- a/manpages/de/lb_local.de.1
+++ /dev/null
@@ -1,46 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
-
-.SH NAME
-\fBlb local\fP \- wrapper for local live\-build programs
-
-.SH SYNOPSIS
-\fBlb local\fP [\fIlive\-build\ options\fP]
-
-.SH DESCRIPTION
-\fBlb local\fP is a high\-level command (porcelain) of \fIlive\-build\fP(7), the
-Debian Live tool suite.
-.PP
-
-.\" FIXME
-.SH OPTIONS
-\fBlb local\fP has no specific options but understands all generic live\-build
-options. See \fIlive\-build\fP(7) for a complete list of all generic live\-build
-options.
-
-.SH FILES
-.IP \fBnone\fP 4
-
-.SH "SEE ALSO"
-\fIlive\-build\fP(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found
-on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in
-the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
-writing a mail to the Debian Live mailing list at
-<\fIdebian\-live at lists.debian.org\fP>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fP> for
-the Debian project.
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
deleted file mode 100644
index 5d378ae..0000000
--- a/manpages/en/lb_local.1
+++ /dev/null
@@ -1,32 +0,0 @@
-.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
-
-.SH NAME
-\fBlb local\fR \- wrapper for local live\-build programs
-
-.SH SYNOPSIS
-\fBlb local\fR [\fIlive\-build\ options\fR]
-
-.SH DESCRIPTION
-\fBlb local\fR is a high\-level command (porcelain) of \fIlive\-build\fR(7), the Debian Live tool suite.
-.PP
-.\" FIXME
-
-.SH OPTIONS
-\fBlb local\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
-
-.SH FILES
-.IP "\fBnone\fR" 4
-
-.SH SEE ALSO
-\fIlive\-build\fR(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live at lists.debian.org\fR>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
deleted file mode 100644
index e94f8e3..0000000
--- a/manpages/po/de/lb_local.1.po
+++ /dev/null
@@ -1,651 +0,0 @@
-# German translations for live-build package
-# Copyright (C) 2012 Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# Automatically generated, 2012.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-19 04:15+0300\n"
-"PO-Revision-Date: 2012-02-04 21:39+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ASCII\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2012-07-19"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a53-1"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
-#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
-#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
-#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
-#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
-#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
-#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
-#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
-#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3
-#: en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
-#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
-#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
-#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
-#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
-#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
-#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
-#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
-#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6
-#: en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
-#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
-#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
-#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
-#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
-#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
-#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
-#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
-#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9
-#: en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
-#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
-#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
-#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
-#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
-#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
-#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
-#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_hdd.1:14
-#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
-#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
-#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
-#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
-#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
-#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
-#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
-#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_hdd.1:17
-#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:225
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: IP
-#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18
-#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22
-#, no-wrap
-msgid "B<none>"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
-#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
-#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
-#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
-#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
-#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
-#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
-#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_hdd.1:21
-#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
-#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
-#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
-#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
-#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
-#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
-#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
-#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_hdd.1:23
-#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
-#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
-#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
-#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
-#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
-#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
-#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25
-#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:235
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
-#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
-#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
-#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
-#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
-#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
-#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26
-#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:236
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
-#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
-#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
-#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
-#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
-#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
-#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28
-#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:238
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
-#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
-#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
-#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
-#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
-#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
-#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29
-#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:239
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
-#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
-#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
-#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
-#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
-#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
-#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31
-#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:241
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
-#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
-#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
-#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
-#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
-#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
-#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32
-#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:242
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
-#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
-#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
-#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
-#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
-#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
-#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33
-#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:243
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:5
-msgid "B<lb local> - wrapper for local live-build programs"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:8
-msgid "B<lb local> [I<live-build\\ options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:11
-msgid ""
-"B<lb local> is a high-level command (porcelain) of I<live-build>(7), the "
-"Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:16
-msgid ""
-"B<lb local> has no specific options but understands all generic live-build "
-"options. See I<live-build>(7) for a complete list of all generic live-build "
-"options."
-msgstr ""
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
index 6a2b980..2fae553 100644
--- a/manpages/po4a.cfg
+++ b/manpages/po4a.cfg
@@ -58,7 +58,6 @@
 [type: man] en/lb_chroot_upstart.1 $lang:$lang/lb_chroot_upstart.$lang.1
 [type: man] en/lb_clean.1 $lang:$lang/lb_clean.$lang.1
 [type: man] en/lb_config.1 $lang:$lang/lb_config.$lang.1
-[type: man] en/lb_local.1 $lang:$lang/lb_local.$lang.1
 [type: man] en/lb_source.1 $lang:$lang/lb_source.$lang.1
 [type: man] en/lb_source_checksums.1 $lang:$lang/lb_source_checksums.$lang.1
 [type: man] en/lb_source_debian-live.1 $lang:$lang/lb_source_debian-live.$lang.1
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
deleted file mode 100644
index 6938cc8..0000000
--- a/manpages/pot/lb_local.1.pot
+++ /dev/null
@@ -1,651 +0,0 @@
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-19 04:15+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2012-07-19"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a53-1"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
-#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
-#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
-#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
-#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
-#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
-#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
-#: en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
-#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
-#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
-#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
-#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
-#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
-#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
-#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
-#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
-#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
-#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
-#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3
-#: en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
-#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
-#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
-#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
-#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
-#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
-#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
-#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
-#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
-#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
-#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
-#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6
-#: en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
-#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
-#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
-#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
-#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
-#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
-#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
-#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
-#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
-#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
-#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
-#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9
-#: en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
-#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
-#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
-#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
-#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
-#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
-#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
-#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_hdd.1:14
-#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
-#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
-#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
-#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
-#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
-#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
-#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
-#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_hdd.1:17
-#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:225
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: IP
-#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18
-#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22
-#, no-wrap
-msgid "B<none>"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
-#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
-#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
-#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
-#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
-#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
-#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
-#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_hdd.1:21
-#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
-#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
-#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
-#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
-#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
-#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
-#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
-#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_hdd.1:23
-#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
-#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
-#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
-#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
-#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
-#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
-#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25
-#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:235
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
-#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
-#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
-#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
-#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
-#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
-#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26
-#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:236
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
-#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
-#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
-#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
-#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
-#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
-#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28
-#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:238
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
-#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
-#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
-#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
-#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
-#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
-#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29
-#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:239
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
-#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
-#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
-#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
-#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
-#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
-#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31
-#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:241
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
-#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
-#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
-#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
-#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
-#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
-#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32
-#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:242
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
-#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
-#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
-#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
-#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
-#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
-#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33
-#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:243
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:5
-msgid "B<lb local> - wrapper for local live-build programs"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:8
-msgid "B<lb local> [I<live-build\\ options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:11
-msgid ""
-"B<lb local> is a high-level command (porcelain) of I<live-build>(7), the "
-"Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_local.1:16
-msgid ""
-"B<lb local> has no specific options but understands all generic live-build "
-"options. See I<live-build>(7) for a complete list of all generic live-build "
-"options."
-msgstr ""
diff --git a/scripts/build.sh b/scripts/build.sh
index 500c76d..fbe3e92 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -2,18 +2,18 @@
 
 if [ -e local/live-build ]
 then
-	LB_BASE="${LB_BASE:-${PWD}/local/live-build}"
+	LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}"
 	PATH="${PWD}/local/live-build/scripts/build:${PATH}"
-	export LB_BASE PATH
-else
-	LB_BASE="${LB_BASE:-/usr/share/live/build}"
-	export LB_BASE
+	export LIVE_BUILD PATH
 fi
 
 # Source global functions
-for FUNCTION in "${LB_BASE}"/functions/*.sh
+for FUNCTION in "${LIVE_BUILD}"/functions/*.sh /usr/share/live/build/functions/*.sh
 do
-	. "${FUNCTION}"
+	if [ -e "${FUNCTION}" ]
+	then
+		. "${FUNCTION}"
+	fi
 done
 
 # Source local functions
diff --git a/scripts/build/lb_binary b/scripts/build/lb_binary
index 0ffb7bf..3f56a58 100755
--- a/scripts/build/lb_binary
+++ b/scripts/build/lb_binary
@@ -11,7 +11,8 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
+
 
 # Automatically populating config tree
 if [ -x auto/config ] && [ ! -e .build/config ]
diff --git a/scripts/build/lb_binary_checksums b/scripts/build/lb_binary_checksums
index d86b55d..2cbe9af 100755
--- a/scripts/build/lb_binary_checksums
+++ b/scripts/build/lb_binary_checksums
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'create binary checksums')"
diff --git a/scripts/build/lb_binary_chroot b/scripts/build/lb_binary_chroot
index 92e1667..190bd8e 100755
--- a/scripts/build/lb_binary_chroot
+++ b/scripts/build/lb_binary_chroot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy chroot into chroot')"
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer
index bdf7308..c49ec8d 100755
--- a/scripts/build/lb_binary_debian-installer
+++ b/scripts/build/lb_binary_debian-installer
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install debian-installer into binary')"
@@ -671,9 +671,17 @@ then
 	fi
 
 	# Excluding udebs
-	grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/udeb_exclude > exclude || true
-	grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs >> exclude || true
-	grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs-${LB_ARCHITECTURES} >> exclude || true
+	for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
+	do
+		if [ -e "${LOCATION}" ]
+		then
+			grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/udeb_exclude" > exclude || true
+	grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs" >> exclude || true
+	grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs-${LB_ARCHITECTURES}" >> exclude || true
+
+			continue
+		fi
+	done
 
 	# Local exclude file
 	if [ -e ../config/binary_debian-installer/udeb_exclude ]
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index 7162db2..c607567 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install disk information into binary')"
@@ -135,7 +135,15 @@ case "${LB_DEBIAN_INSTALLER}" in
 
 		echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
 
-		cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include binary/.disk/udeb_include
+		for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
+		do
+			if [ -e "${LOCATION}" ]
+			then
+				cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include" binary/.disk/udeb_include
+
+				continue
+			fi
+		done
 		;;
 
 	true|netinst|live)
@@ -152,7 +160,15 @@ case "${LB_DEBIAN_INSTALLER}" in
 			echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
 		fi
 
-		cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include
+		for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
+		do
+			if [ -e "${LOCATION}" ]
+			then
+				cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include" binary/.disk/udeb_include
+
+				continue
+			fi
+		done
 
 		if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
 		then
@@ -167,7 +183,15 @@ case "${LB_DEBIAN_INSTALLER}" in
 
 		echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/BC Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
 
-		cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include binary/.disk/udeb_include
+		for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
+		do
+			if [ -e "${LOCATION}" ]
+			then
+				cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include" binary/.disk/udeb_include
+
+				continue
+			fi
+		done
 		;;
 
 	false)
diff --git a/scripts/build/lb_binary_grub b/scripts/build/lb_binary_grub
index ea2b0fe..6558a50 100755
--- a/scripts/build/lb_binary_grub
+++ b/scripts/build/lb_binary_grub
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs grub into binary')"
diff --git a/scripts/build/lb_binary_grub2 b/scripts/build/lb_binary_grub2
index f28cd87..fbae1d8 100755
--- a/scripts/build/lb_binary_grub2
+++ b/scripts/build/lb_binary_grub2
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs grub2 into binary')"
diff --git a/scripts/build/lb_binary_hdd b/scripts/build/lb_binary_hdd
index 13f3f18..bf349a0 100755
--- a/scripts/build/lb_binary_hdd
+++ b/scripts/build/lb_binary_hdd
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build binary image')"
diff --git a/scripts/build/lb_binary_hooks b/scripts/build/lb_binary_hooks
index 889c3a1..8ae800b 100755
--- a/scripts/build/lb_binary_hooks
+++ b/scripts/build/lb_binary_hooks
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'execute hooks in binary')"
@@ -43,12 +43,17 @@ Create_lockfile .lock
 # Running hooks
 for _HOOK in ${LB_BINARY_HOOKS}
 do
-	if [ -e "${LB_BASE}/hooks/???-${_HOOK}.binary" ]
-	then
-		cd binary
-		./"${LB_BASE}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
-		cd "${OLDPWD}"
-	fi
+		for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks
+		do
+			if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ]
+			then
+				cd binary
+				./"${LOCATION}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
+				cd "${OLDPWD}"
+
+				continue
+			fi
+		done
 done
 
 ## Processing local hooks
diff --git a/scripts/build/lb_binary_includes b/scripts/build/lb_binary_includes
index 0bd183a..f578ef5 100755
--- a/scripts/build/lb_binary_includes
+++ b/scripts/build/lb_binary_includes
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy files into binary')"
diff --git a/scripts/build/lb_binary_iso b/scripts/build/lb_binary_iso
index 2595e6b..ffc996e 100755
--- a/scripts/build/lb_binary_iso
+++ b/scripts/build/lb_binary_iso
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build iso binary image')"
diff --git a/scripts/build/lb_binary_linux-image b/scripts/build/lb_binary_linux-image
index 0997cea..06321a7 100755
--- a/scripts/build/lb_binary_linux-image
+++ b/scripts/build/lb_binary_linux-image
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install linux-image into binary')"
diff --git a/scripts/build/lb_binary_local-includes b/scripts/build/lb_binary_local-includes
index 84f7f3c..773ea8d 100755
--- a/scripts/build/lb_binary_local-includes
+++ b/scripts/build/lb_binary_local-includes
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy files into binary')"
diff --git a/scripts/build/lb_binary_manifest b/scripts/build/lb_binary_manifest
index 32d79ea..c8f1bd3 100755
--- a/scripts/build/lb_binary_manifest
+++ b/scripts/build/lb_binary_manifest
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'create manifest')"
diff --git a/scripts/build/lb_binary_memtest b/scripts/build/lb_binary_memtest
index f66701d..a18583a 100755
--- a/scripts/build/lb_binary_memtest
+++ b/scripts/build/lb_binary_memtest
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs a memtest into binary')"
diff --git a/scripts/build/lb_binary_netboot b/scripts/build/lb_binary_netboot
index b4957a3..4796307 100755
--- a/scripts/build/lb_binary_netboot
+++ b/scripts/build/lb_binary_netboot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build netboot binary image')"
diff --git a/scripts/build/lb_binary_package-lists b/scripts/build/lb_binary_package-lists
index 431ec97..65104db 100755
--- a/scripts/build/lb_binary_package-lists
+++ b/scripts/build/lb_binary_package-lists
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install local packages into binary')"
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs
index 99a7695..69b5350 100755
--- a/scripts/build/lb_binary_rootfs
+++ b/scripts/build/lb_binary_rootfs
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build rootfs image')"
diff --git a/scripts/build/lb_binary_silo b/scripts/build/lb_binary_silo
index 2a9ca5c..23753c8 100755
--- a/scripts/build/lb_binary_silo
+++ b/scripts/build/lb_binary_silo
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs silo into binary')"
diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux
index 2788103..c4b2acc 100755
--- a/scripts/build/lb_binary_syslinux
+++ b/scripts/build/lb_binary_syslinux
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs syslinux into binary')"
@@ -158,7 +158,12 @@ then
 		_SOURCE="config/bootloaders/${_BOOTLOADER}"
 	else
 		# Internal system copy
-		_SOURCE="${LB_BASE:-/usr/share/live/build}/bootloaders/${_BOOTLOADER}"
+		if [ -n "${LIVE_BUILD}" ]
+		then
+			_SOURCE="${LIVE_BUILD}/bootloaders/${_BOOTLOADER}"
+		else
+			_SOURCE="/usr/share/live/build/bootloaders"
+		fi
 	fi
 else
 	# External copy from chroot or system
diff --git a/scripts/build/lb_binary_tar b/scripts/build/lb_binary_tar
index 80630bd..9a133ec 100755
--- a/scripts/build/lb_binary_tar
+++ b/scripts/build/lb_binary_tar
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build harddisk binary image')"
diff --git a/scripts/build/lb_binary_virtual-hdd b/scripts/build/lb_binary_virtual-hdd
index c25139a..bfba5ee 100755
--- a/scripts/build/lb_binary_virtual-hdd
+++ b/scripts/build/lb_binary_virtual-hdd
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build binary image')"
diff --git a/scripts/build/lb_binary_win32-loader b/scripts/build/lb_binary_win32-loader
index f0a5aeb..ce150b6 100755
--- a/scripts/build/lb_binary_win32-loader
+++ b/scripts/build/lb_binary_win32-loader
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy win32-loader into binary')"
diff --git a/scripts/build/lb_binary_yaboot b/scripts/build/lb_binary_yaboot
index ef001ef..bc55b68 100755
--- a/scripts/build/lb_binary_yaboot
+++ b/scripts/build/lb_binary_yaboot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'installs yaboot into binary')"
diff --git a/scripts/build/lb_binary_zsync b/scripts/build/lb_binary_zsync
index 5ec47e3..22442a8 100755
--- a/scripts/build/lb_binary_zsync
+++ b/scripts/build/lb_binary_zsync
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build zsync control files')"
diff --git a/scripts/build/lb_bootstrap b/scripts/build/lb_bootstrap
index 9e9cdb0..439dd8b 100755
--- a/scripts/build/lb_bootstrap
+++ b/scripts/build/lb_bootstrap
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Automatically populating config tree
 if [ -x auto/config ] && [ ! -e .build/config ]
diff --git a/scripts/build/lb_bootstrap_cache b/scripts/build/lb_bootstrap_cache
index fe50fe9..296adec 100755
--- a/scripts/build/lb_bootstrap_cache
+++ b/scripts/build/lb_bootstrap_cache
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'cache bootstrap stage')"
diff --git a/scripts/build/lb_bootstrap_cdebootstrap b/scripts/build/lb_bootstrap_cdebootstrap
index 0d5577a..ba7ea8a 100755
--- a/scripts/build/lb_bootstrap_cdebootstrap
+++ b/scripts/build/lb_bootstrap_cdebootstrap
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
diff --git a/scripts/build/lb_bootstrap_copy b/scripts/build/lb_bootstrap_copy
index b0e1f7e..17e65fb 100755
--- a/scripts/build/lb_bootstrap_copy
+++ b/scripts/build/lb_bootstrap_copy
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'bootstrap by copying the host system')"
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap
index f169926..c47354d 100755
--- a/scripts/build/lb_bootstrap_debootstrap
+++ b/scripts/build/lb_bootstrap_debootstrap
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')"
diff --git a/scripts/build/lb_build b/scripts/build/lb_build
index cd20b34..ba8e1f5 100755
--- a/scripts/build/lb_build
+++ b/scripts/build/lb_build
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Automatically populating config tree
 if [ -x auto/config ] && [ ! -e .build/config ]
diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot
index 71bcb71..7f654e0 100755
--- a/scripts/build/lb_chroot
+++ b/scripts/build/lb_chroot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Automatically populating config tree
 if [ -x auto/config ] && [ ! -e .build/config ]
diff --git a/scripts/build/lb_chroot_apt b/scripts/build/lb_chroot_apt
index a280d78..32af22d 100755
--- a/scripts/build/lb_chroot_apt
+++ b/scripts/build/lb_chroot_apt
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives
index f3845a0..220f8ab 100755
--- a/scripts/build/lb_chroot_archives
+++ b/scripts/build/lb_chroot_archives
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')"
@@ -32,6 +32,14 @@ Require_stagefile .build/config .build/bootstrap
 
 _LB_LOCAL_KEY_EMAIL="live-build-local-key at invalid"
 
+# FIXME: this is ugly
+if [ -n "${LIVE_BUILD}" ]
+then
+	_BASE="${LIVE_BUILD}"
+else
+	_BASE="/usr/share/live/build"
+fi
+
 case "${LB_DERIVATIVE}" in
 	true)
 		_PARENT_FILE="sources.list.d/debian.list"
@@ -207,44 +215,44 @@ EOF
 
 				# Prefer archives from the config tree
 				# over the global ones.
-				if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
+				if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
 				then
 					continue
 				fi
 
 				# Adding sources.list entries (chroot)
-				if [ -e "${LB_BASE}/archives/${REPOSITORY}.chroot" ]
+				if [ -e "${_BASE}/archives/${REPOSITORY}.chroot" ]
 				then
 					sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \
 					    -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
-					"${LB_BASE}/archives/${REPOSITORY}.chroot" > \
+					"${_BASE}/archives/${REPOSITORY}.chroot" > \
 					"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
-				elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ]
+				elif [ -e "${_BASE}/archives/${REPOSITORY}" ]
 				then
 					sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \
 					    -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
-					"${LB_BASE}/archives/${REPOSITORY}" > \
+					"${_BASE}/archives/${REPOSITORY}" > \
 					"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
 				fi
 
 				# Adding pinning preferences (chroot)
-				if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ]
+				if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ]
 				then
-					cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
-				elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" ]
+					cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
+				elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.chroot" ]
 				then
-					cp "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
+					cp "${_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
 				fi
 
 				if [ "${LB_APT_SECURE}" != false ]
 				then
 					# Adding archive signing keys (chroot)
-					if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.chroot" ]
+					if [ -e "${_BASE}/archives/${REPOSITORY}.key.chroot" ]
 					then
-						cat "${LB_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -"
-					elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ]
+						cat "${_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -"
+					elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ]
 					then
-						cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
+						cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
 					fi
 				fi
 			done
@@ -763,44 +771,44 @@ EOF
 
 				# Prefer archives from the config tree
 				# over the global ones.
-				if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
+				if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
 				then
 					continue
 				fi
 
 				# Adding sources.list entries (binary)
-				if [ -e "${LB_BASE}/archives/${REPOSITORY}.binary" ]
+				if [ -e "${_BASE}/archives/${REPOSITORY}.binary" ]
 				then
 					sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
 					    -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
-					"${LB_BASE}/archives/${REPOSITORY}.binary" > \
+					"${_BASE}/archives/${REPOSITORY}.binary" > \
 					"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
-				elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ]
+				elif [ -e "${_BASE}/archives/${REPOSITORY}" ]
 				then
 					sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
 					    -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
-					"${LB_BASE}/archives/${REPOSITORY}" > \
+					"${_BASE}/archives/${REPOSITORY}" > \
 					"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
 				fi
 
 				# Adding pinning preferences (binary)
-				if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ]
+				if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ]
 				then
-					cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
-				elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.binary" ]
+					cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
+				elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.binary" ]
 				then
-					cp "${LB_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
+					cp "${_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
 				fi
 
 				if [ "${LB_APT_SECURE}" != false ]
 				then
 					# Adding archive signing keys (binary)
-					if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.binary" ]
+					if [ -e "${_BASE}/archives/${REPOSITORY}.key.binary" ]
 					then
-						cat "${LB_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -"
-					elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ]
+						cat "${_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -"
+					elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ]
 					then
-						cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
+						cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
 					fi
 				fi
 			done
diff --git a/scripts/build/lb_chroot_cache b/scripts/build/lb_chroot_cache
index ba95600..d36018c 100755
--- a/scripts/build/lb_chroot_cache
+++ b/scripts/build/lb_chroot_cache
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'cache chroot stage')"
diff --git a/scripts/build/lb_chroot_debianchroot b/scripts/build/lb_chroot_debianchroot
index f407607..16efd7a 100755
--- a/scripts/build/lb_chroot_debianchroot
+++ b/scripts/build/lb_chroot_debianchroot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /etc/debian_chroot')"
diff --git a/scripts/build/lb_chroot_devpts b/scripts/build/lb_chroot_devpts
index 2df01dc..6811f75 100755
--- a/scripts/build/lb_chroot_devpts
+++ b/scripts/build/lb_chroot_devpts
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'mount /dev/pts')"
diff --git a/scripts/build/lb_chroot_dpkg b/scripts/build/lb_chroot_dpkg
index ec4681b..d7ddec7 100755
--- a/scripts/build/lb_chroot_dpkg
+++ b/scripts/build/lb_chroot_dpkg
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /sbin/dpkg')"
diff --git a/scripts/build/lb_chroot_hacks b/scripts/build/lb_chroot_hacks
index 334a5bf..82dfdc7 100755
--- a/scripts/build/lb_chroot_hacks
+++ b/scripts/build/lb_chroot_hacks
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'execute hacks in chroot')"
diff --git a/scripts/build/lb_chroot_hooks b/scripts/build/lb_chroot_hooks
index b07474d..1b754e0 100755
--- a/scripts/build/lb_chroot_hooks
+++ b/scripts/build/lb_chroot_hooks
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'execute hooks in chroot')"
@@ -52,11 +52,15 @@ mount -o remount,ro,bind config chroot/root/config
 # Copying hooks
 for _HOOK in ${LB_CHROOT_HOOKS}
 do
-	if [ -e "${LB_BASE}"/hooks/???-"${_HOOK}".chroot ]
-	then
-		mkdir -p chroot/root/lb_chroot_hooks
-		cp "${LB_BASE}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks
-	fi
+	for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks
+	do
+		if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ]
+		then
+			mkdir -p chroot/root/lb_chroot_hooks
+			cp "${LOCATION}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks
+			continue
+		fi
+	done
 done
 
 # Running hooks
diff --git a/scripts/build/lb_chroot_hostname b/scripts/build/lb_chroot_hostname
index af71582..185aedf 100755
--- a/scripts/build/lb_chroot_hostname
+++ b/scripts/build/lb_chroot_hostname
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /bin/hostname')"
diff --git a/scripts/build/lb_chroot_hosts b/scripts/build/lb_chroot_hosts
index 1e7a513..6cd7550 100755
--- a/scripts/build/lb_chroot_hosts
+++ b/scripts/build/lb_chroot_hosts
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /etc/hosts')"
diff --git a/scripts/build/lb_chroot_includes b/scripts/build/lb_chroot_includes
index 32237b2..c60a5a6 100755
--- a/scripts/build/lb_chroot_includes
+++ b/scripts/build/lb_chroot_includes
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy files into chroot')"
diff --git a/scripts/build/lb_chroot_install-packages b/scripts/build/lb_chroot_install-packages
index ed5119d..5f70cd3 100755
--- a/scripts/build/lb_chroot_install-packages
+++ b/scripts/build/lb_chroot_install-packages
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install queued packages into chroot')"
diff --git a/scripts/build/lb_chroot_interactive b/scripts/build/lb_chroot_interactive
index cdc68c4..7532a8c 100755
--- a/scripts/build/lb_chroot_interactive
+++ b/scripts/build/lb_chroot_interactive
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'make build interactive')"
diff --git a/scripts/build/lb_chroot_linux-image b/scripts/build/lb_chroot_linux-image
index 312329d..e2d012c 100755
--- a/scripts/build/lb_chroot_linux-image
+++ b/scripts/build/lb_chroot_linux-image
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'schedule kernel packages for installation')"
diff --git a/scripts/build/lb_chroot_live-packages b/scripts/build/lb_chroot_live-packages
index 654c719..f5b219e 100755
--- a/scripts/build/lb_chroot_live-packages
+++ b/scripts/build/lb_chroot_live-packages
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'schedule live packages for installation')"
diff --git a/scripts/build/lb_chroot_local-patches b/scripts/build/lb_chroot_local-patches
index f1a5239..b82514d 100755
--- a/scripts/build/lb_chroot_local-patches
+++ b/scripts/build/lb_chroot_local-patches
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'apply local patches against chroot')"
diff --git a/scripts/build/lb_chroot_package-lists b/scripts/build/lb_chroot_package-lists
index 5f408f1..0237be1 100755
--- a/scripts/build/lb_chroot_package-lists
+++ b/scripts/build/lb_chroot_package-lists
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'queue install of package lists into chroot')"
diff --git a/scripts/build/lb_chroot_preseed b/scripts/build/lb_chroot_preseed
index 553510b..59dd145 100755
--- a/scripts/build/lb_chroot_preseed
+++ b/scripts/build/lb_chroot_preseed
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'execute local preseed in chroot')"
diff --git a/scripts/build/lb_chroot_proc b/scripts/build/lb_chroot_proc
index 45ad6c6..8a29723 100755
--- a/scripts/build/lb_chroot_proc
+++ b/scripts/build/lb_chroot_proc
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'mount /proc')"
diff --git a/scripts/build/lb_chroot_resolv b/scripts/build/lb_chroot_resolv
index c2f4b37..0ace6ed 100755
--- a/scripts/build/lb_chroot_resolv
+++ b/scripts/build/lb_chroot_resolv
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /etc/resolv.conf')"
diff --git a/scripts/build/lb_chroot_selinuxfs b/scripts/build/lb_chroot_selinuxfs
index bd5d6a9..c00713c 100755
--- a/scripts/build/lb_chroot_selinuxfs
+++ b/scripts/build/lb_chroot_selinuxfs
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'mount /selinux')"
diff --git a/scripts/build/lb_chroot_sysfs b/scripts/build/lb_chroot_sysfs
index af633fb..28addaf 100755
--- a/scripts/build/lb_chroot_sysfs
+++ b/scripts/build/lb_chroot_sysfs
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'mount /sys')"
diff --git a/scripts/build/lb_chroot_sysv-rc b/scripts/build/lb_chroot_sysv-rc
index 497e578..5fd136d 100755
--- a/scripts/build/lb_chroot_sysv-rc
+++ b/scripts/build/lb_chroot_sysv-rc
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')"
diff --git a/scripts/build/lb_chroot_task-lists b/scripts/build/lb_chroot_task-lists
index c223a68..f830144 100755
--- a/scripts/build/lb_chroot_task-lists
+++ b/scripts/build/lb_chroot_task-lists
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install task lists into chroot')"
diff --git a/scripts/build/lb_chroot_tmpfs b/scripts/build/lb_chroot_tmpfs
index fe00e1d..a591683 100755
--- a/scripts/build/lb_chroot_tmpfs
+++ b/scripts/build/lb_chroot_tmpfs
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'use tmpfs to speedup the build')"
diff --git a/scripts/build/lb_chroot_upstart b/scripts/build/lb_chroot_upstart
index 915ded2..39412fd 100755
--- a/scripts/build/lb_chroot_upstart
+++ b/scripts/build/lb_chroot_upstart
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'manage /sbin/initctl')"
diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean
index b2f8847..7f341d6 100755
--- a/scripts/build/lb_clean
+++ b/scripts/build/lb_clean
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Read meta config
 if [ "${1}" != "noauto" ] && [ -x auto/clean ]
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index e8f1ef1..0c6a16f 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Read meta config
 if [ "${1}" != "noauto" ] && [ -x auto/config ]
diff --git a/scripts/build/lb_local b/scripts/build/lb_local
deleted file mode 100755
index 82e6c8a..0000000
--- a/scripts/build/lb_local
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>
-##
-## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
-## This is free software, and you are welcome to redistribute it
-## under certain conditions; see COPYING for details.
-
-
-LB_BASE="${PWD}/live-build"
-PATH="${LB_BASE}/scripts/build:${PATH}"
-
-export LB_BASE PATH
-
-if [ ! -z "${1}" ]
-then
-	exec lb "${@}"
-fi
diff --git a/scripts/build/lb_source b/scripts/build/lb_source
index 47f3fad..d60bf7d 100755
--- a/scripts/build/lb_source
+++ b/scripts/build/lb_source
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Automatically populating config tree
 if [ -x auto/config ] && [ ! -e .build/config ]
diff --git a/scripts/build/lb_source_checksums b/scripts/build/lb_source_checksums
index f21d7ae..05adb6d 100755
--- a/scripts/build/lb_source_checksums
+++ b/scripts/build/lb_source_checksums
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'create source checksums')"
diff --git a/scripts/build/lb_source_debian b/scripts/build/lb_source_debian
index 910bef4..61e4c38 100755
--- a/scripts/build/lb_source_debian
+++ b/scripts/build/lb_source_debian
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'debian sources')"
diff --git a/scripts/build/lb_source_debian-live b/scripts/build/lb_source_debian-live
index ff7bd28..5e0c86f 100755
--- a/scripts/build/lb_source_debian-live
+++ b/scripts/build/lb_source_debian-live
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'copy debian-live config into source')"
diff --git a/scripts/build/lb_source_disk b/scripts/build/lb_source_disk
index 6573066..71ff063 100755
--- a/scripts/build/lb_source_disk
+++ b/scripts/build/lb_source_disk
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'install disk information into source')"
diff --git a/scripts/build/lb_source_hdd b/scripts/build/lb_source_hdd
index 990f81c..cbf779b 100755
--- a/scripts/build/lb_source_hdd
+++ b/scripts/build/lb_source_hdd
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build source image')"
diff --git a/scripts/build/lb_source_iso b/scripts/build/lb_source_iso
index beb61ba..bac2793 100755
--- a/scripts/build/lb_source_iso
+++ b/scripts/build/lb_source_iso
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build iso source image')"
diff --git a/scripts/build/lb_source_tar b/scripts/build/lb_source_tar
index 63933f0..ed2cb4d 100755
--- a/scripts/build/lb_source_tar
+++ b/scripts/build/lb_source_tar
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build source tarball')"
diff --git a/scripts/build/lb_source_virtual-hdd b/scripts/build/lb_source_virtual-hdd
index 5d861d8..2b82cfe 100755
--- a/scripts/build/lb_source_virtual-hdd
+++ b/scripts/build/lb_source_virtual-hdd
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'build source image')"
diff --git a/scripts/build/lb_testroot b/scripts/build/lb_testroot
index 5f7b680..4719384 100755
--- a/scripts/build/lb_testroot
+++ b/scripts/build/lb_testroot
@@ -11,7 +11,7 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
 
 # Setting static variables
 DESCRIPTION="$(Echo 'ensure that a system is built as root')"

-- 
live-build



More information about the debian-live-changes mailing list