diff options
author | dancer <dancer> | 2003-03-10 11:01:01 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-03-10 11:01:01 +0000 |
commit | 339ee7a89b7f9e0755090a1c764e41a4c5b172ad (patch) | |
tree | 4e81c66a4d3f14e4c58c084bf52de104281448a2 /pbuilder-modules | |
parent | ca62e88c1fd2574426cc228aef4a1c5064dd2853 (diff) | |
download | pbuilder-339ee7a89b7f9e0755090a1c764e41a4c5b172ad.tar pbuilder-339ee7a89b7f9e0755090a1c764e41a4c5b172ad.tar.gz |
+ * debian/rules: add check target for build.
+
+ * Makefile (check): add check target to makefile, to see if there is
+ any syntax error.
+
+ * pbuilder-updatebuildenv: support --preserve-buildplace
+ apply things from
+ Daniel Schepler <schepler@math.berkeley.edu>
+
+ * pbuilder-satisfydepends: support --preserve-buildplace
+ support Format: field.
+
+ * pbuilder-modules (pbuilder-options): support --preserve-buildplace
+
+ * pbuilder-buildpackage (PACKAGENAME): support --preserve-buildplace
+
+ * pbuilder-buildpackage-funcs: support --preserve-buildplace
+
+ * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): support --preserve-buildplace
+
+ * pbuilder-checkparams (PRESERVE_BUILDPLACE): add PRESERVE_BUILDPLACE
+
+ * pbuilder.8: update docs to add --preserve-buildplace
+
Diffstat (limited to 'pbuilder-modules')
-rw-r--r-- | pbuilder-modules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pbuilder-modules b/pbuilder-modules index d4d9abc..a693cbb 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -64,6 +64,7 @@ pbuilder-options: --timeout [timeout time] --override-config --binary-arch + --preserve-buildplace pdebuild-specific pbuilder-options --pbuilderroot [command to obtain root privilege for pbuilder] @@ -125,7 +126,7 @@ function cleanbuildplace () { if [ "$?" -ne 0 ]; then echo " -> Aborting with an error"; fi - if [ ! "${INTERNAL_BUILD_UML}" = "yes" ]; then + if [ "${INTERNAL_BUILD_UML}" != "yes" -a ! \( "${PRESERVE_BUILDPLACE}" = "yes" -a -d "$BUILDPLACE" \) ]; then if [ -d "$BUILDPLACE" ]; then echo " -> cleaning the build env " rm -rf "$BUILDPLACE" |