diff options
author | dancer <dancer> | 2003-12-10 23:18:48 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-12-10 23:18:48 +0000 |
commit | 9ff931b17cc0890acdfdaa203fc37ea49aa42cd4 (patch) | |
tree | b8edfe99e6bdc42563dcc3e823b992648207b599 | |
parent | 7c611867538b8400701eabb163ee2b7e4f927637 (diff) | |
download | pbuilder-9ff931b17cc0890acdfdaa203fc37ea49aa42cd4.tar pbuilder-9ff931b17cc0890acdfdaa203fc37ea49aa42cd4.tar.gz |
+
+ * debuild-pbuilder.1: fix document formatting error, from Roland Stigge.
+
+ * pbuilder-runhooks (hooks): Try and detect file name non-matching case
+ for hooks, from Dale Amon.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debuild-pbuilder.1 | 2 | ||||
-rw-r--r-- | pbuilder-runhooks | 13 |
4 files changed, 23 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2003-12-11 Junichi Uekawa <dancer@debian.org> + + * debuild-pbuilder.1: fix document formatting error, from Roland Stigge. + + * pbuilder-runhooks (hooks): Try and detect file name non-matching case + for hooks, from Dale Amon. + 2003-11-28 <dancer@zaurus> * Documentation/pbuilder-doc.xml: update diff --git a/debian/changelog b/debian/changelog index 2c13e80..bd73adb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,10 @@ pbuilder (0.95) UNRELEASED; urgency=low * Document fakechroot use * Conflict with old bash that fails on unset. (closes: #221805) + * Fixed typo in debuild-pbuilder.1 leading to man + warning, thanks to Roland Stigge (Closes: #223004). - -- Junichi Uekawa <dancer@debian.org> Thu, 27 Nov 2003 21:36:01 +0900 + -- Junichi Uekawa <dancer@debian.org> Thu, 11 Dec 2003 08:17:55 +0900 pbuilder (0.94) unstable; urgency=low diff --git a/debuild-pbuilder.1 b/debuild-pbuilder.1 index d37b431..61a095d 100644 --- a/debuild-pbuilder.1 +++ b/debuild-pbuilder.1 @@ -8,7 +8,7 @@ debuild-pbuilder \- A "debuild" wrapper to satisfy build-dependency before debui A wrapper to "debuild" program that does Build-Dependency satisfaction. -.SH" OPTIONS" +.SH "OPTIONS" See debuild manpage for details. diff --git a/pbuilder-runhooks b/pbuilder-runhooks index ee1e9c3..fac6a80 100644 --- a/pbuilder-runhooks +++ b/pbuilder-runhooks @@ -18,6 +18,13 @@ # # HISTORY: # $Log$ +# Revision 1.17 2003/12/10 23:18:48 dancer +# + +# + * debuild-pbuilder.1: fix document formatting error, from Roland Stigge. +# + +# + * pbuilder-runhooks (hooks): Try and detect file name non-matching case +# + for hooks, from Dale Amon. +# # Revision 1.16 2003/11/16 07:08:54 dancer # + * THANKS: add # + @@ -155,6 +162,9 @@ function executehooks () { fi for fn in "$BUILDPLACE/$hooks/$prefix"[0-9][0-9]* ; do case "$fn" in + "$BUILDPLACE/$hooks/$prefix"'[0-9][0-9]*') + echo "W: no hooks of type ${prefix} found -- ignoring" + ;; *~) echo "W: skipping an editor backup file $fn" ;; @@ -170,7 +180,8 @@ function executehooks () { filetype=$(basename "$fn" ) echo "W: execute priv not set on file $filetype, not executing." else - echo "W: no hooks of type ${prefix} found" + # Should it reach here ? This case should be caught in the above case. + echo "W: no hooks of type ${prefix} found -- internal error in logic" fi fi ;; |