aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-updatebuildenv
diff options
context:
space:
mode:
authordancer <dancer>2002-09-16 07:19:08 +0000
committerdancer <dancer>2002-09-16 07:19:08 +0000
commit50abd1f7ec6716770010cca83f92169aa85e852b (patch)
tree1b8bc23ca1d0f0dedcb63d51add26069db268e42 /pbuilder-updatebuildenv
parente542630eab0afa93c70a8ea001c34e6d9ebaedd1 (diff)
downloadpbuilder-50abd1f7ec6716770010cca83f92169aa85e852b.tar
pbuilder-50abd1f7ec6716770010cca83f92169aa85e852b.tar.gz
+ * pbuilder-user-mode-linux: add trapping and cleaning up routine.
+ + * pbuilder-modules: modify things shuffling around until it works... + + * pbuilder-user-mode-linux (BUILDING_DSC_FILE): add call to pbuilder update. + + * pbuilder-updatebuildenv: check for INTERNAL_BUILD_UML and ignore the + basetgz creation in UML. + + * pbuilder-modules: remove invocation of hostname from uml. + + * debian/control (Depends): require 1.31.1 or greater of debianutils for readlink + + * Makefile (install): add pbuilder-user-mode-linux to install target + + * debian/control (Depends): add depends on debianutils, for readlink +
Diffstat (limited to 'pbuilder-updatebuildenv')
-rwxr-xr-xpbuilder-updatebuildenv6
1 files changed, 4 insertions, 2 deletions
diff --git a/pbuilder-updatebuildenv b/pbuilder-updatebuildenv
index abfd40a..61dcbc2 100755
--- a/pbuilder-updatebuildenv
+++ b/pbuilder-updatebuildenv
@@ -47,6 +47,8 @@ unloadhooks
umountproc
trap cleanbuildplace exit
-echo " -> creating base.tgz"
-(cd "$BUILDPLACE"; tar cfz "$BASETGZ" *)
+if [ ! "${INTERNAL_BUILD_UML}" = "yes" ]; then
+ echo " -> creating base.tgz"
+ (cd "$BUILDPLACE"; tar cfz "$BASETGZ" *)
+fi
cleanbuildplace