diff options
author | dancer <dancer> | 2003-12-23 13:56:34 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-12-23 13:56:34 +0000 |
commit | a8045fd73200c1ba47f064f14813ed799b78ac77 (patch) | |
tree | dbf0baecb49fc3a5d1d4548fdc5aa053caba1867 /Makefile | |
parent | fabcb2bae7541eb52a3f292393ae8902889d9c74 (diff) | |
download | pbuilder-a8045fd73200c1ba47f064f14813ed799b78ac77.tar pbuilder-a8045fd73200c1ba47f064f14813ed799b78ac77.tar.gz |
+2003-12-23 Junichi Uekawa <dancer@debian.org>
+
+ * Makefile (install): update build rules to install pdebuild-internal
+
+ * pbuilderrc.5: update document USE_PDEBUILD_INTERNAL
+
+ * pdebuild-user-mode-linux.1: document --use-pdebuild-internal
+
+ * pdebuild.1: document --use-pdebuild-internal
+
+ * pbuilder-modules: document use-pdebuild-internal
+
+ * pbuilder-checkparams: --use-pdebuild-internal option.
+
+ * pdebuild: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes'
+
+ * pdebuild-user-mode-linux: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes'
+
+ * pdebuild-internal: Implement a pbuilder execute script to be
+ used for pdebuild without doing debian/rules clean outside of chroot.
+
+ * pbuilder-checkparams: support multiple bindmounts;
+ delimit it with spaces.
+
+ * pbuilder-modules: add --debug option here.
+
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2,6 +2,10 @@ INSTALL_DIRECTORY=install -d -m 0755 INSTALL_FILE=install -m 0644 INSTALL_EXECUTABLE=install -m 0755 + +# +# To add new script, add it to here, so that it will be tested. And then add a rule to install: target. +# SHELLCODES=pbuilder-buildpackage \ pbuilder-buildpackage-funcs \ pbuilder-checkparams \ @@ -14,7 +18,8 @@ SHELLCODES=pbuilder-buildpackage \ pbuilder-user-mode-linux \ pbuilder \ pdebuild \ - pdebuild-user-mode-linux + pdebuild-user-mode-linux \ + pdebuild-internal check: set -e; @@ -60,6 +65,7 @@ install: $(INSTALL_EXECUTABLE) pdebuild-user-mode-linux $(DESTDIR)/usr/bin $(INSTALL_EXECUTABLE) debuild-pbuilder $(DESTDIR)/usr/bin $(INSTALL_EXECUTABLE) pbuilder-satisfydepends $(DESTDIR)/usr/lib/pbuilder/ + $(INSTALL_EXECUTABLE) pdebuild-internal $(DESTDIR)/usr/lib/pbuilder/ $(INSTALL_FILE) pbuilderrc $(DESTDIR)/etc $(INSTALL_FILE) pbuilderrc $(DESTDIR)/usr/share/pbuilder $(INSTALL_FILE) pbuilder-uml.conf $(DESTDIR)/etc/pbuilder |