summaryrefslogtreecommitdiff
path: root/build-pkg-deb
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2014-12-08 15:00:06 +0100
committerMichael Schroeder <mls@suse.de>2014-12-08 15:00:06 +0100
commit72819c9898c9c50ae3577a2afcd8077b358e968e (patch)
tree83b5f1c71517a74ab1a758bb9be03a56dbff187b /build-pkg-deb
parent34ecc6b1746d87004874164864cdad4de82ca2fd (diff)
move check_exit calls to init_buildsystem
Diffstat (limited to 'build-pkg-deb')
-rw-r--r--build-pkg-deb2
1 files changed, 0 insertions, 2 deletions
diff --git a/build-pkg-deb b/build-pkg-deb
index f493063..83a4afe 100644
--- a/build-pkg-deb
+++ b/build-pkg-deb
@@ -51,7 +51,6 @@ pkg_install_deb() {
export DEBIAN_PRIORITY=critical
( cd $BUILD_ROOT && chroot $BUILD_ROOT dpkg --install --force all .init_b_cache/$PKG.deb 2>&1 || touch $BUILD_ROOT/exit ) | \
perl -ne '$|=1;/^(Configuration file|Installing new config file|Selecting previously deselected|Selecting previously unselected|\(Reading database|Unpacking |Setting up|Creating config file|Preparing to replace dpkg|Preparing to unpack )/||/^$/||print'
- check_exit
# ugly workaround for upstart system. some packages (procps) try
# to start a service in their configure phase. As we don't have
# a running upstart, we just link the start binary to /bin/true
@@ -71,7 +70,6 @@ pkg_erase_deb() {
export DEBIAN_PRIORITY=critical
( cd $BUILD_ROOT && chroot $BUILD_ROOT dpkg --purge --force all $PKG 2>&1 || touch $BUILD_ROOT/exit ) | \
perl -ne '$|=1;/^(\(Reading database|Removing |Purging configuration files for )/||/^$/||print'
- check_exit
}
pkg_cumulate_deb() {