diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | pbuilder-runhooks | 15 |
4 files changed, 25 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2003-11-16 Junichi Uekawa <dancer@debian.org> + + * THANKS: add + + * pbuilder-runhooks: fix warning messages to be more correct, thanks + to Daniel Martin. + 2003-11-11 Junichi Uekawa <dancer@debian.org> * pbuilder-modules (pbuilder-options): reorder umount and mount so that @@ -32,6 +32,7 @@ Kenneth Pronovici <pronovic@debian.org> Matt Kraai <kraai@alumni.cmu.edu> Roland Stigge "Aaron M. Ucko" <ucko@debian.org> +Daniel Martin <martin@snowplow.org> Artur R. Czechowski I thank them all! diff --git a/debian/changelog b/debian/changelog index 1ea6e28..ca84dd7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,11 @@ pbuilder (0.94) UNRELEASED; urgency=low Reordered mount order so that /dev/pts and /dev mounts can be specified at the same time. It might not be the real problem, but this seems like one big problem, at least. + * Bug fix: "pbuilder: Error message: W: execute priv not set on file + D[0-9][0-9]*, not executing.", thanks to Daniel Martin (Closes: + #220979). - -- Junichi Uekawa <dancer@debian.org> Tue, 11 Nov 2003 08:28:49 +0900 + -- Junichi Uekawa <dancer@debian.org> Sun, 16 Nov 2003 16:08:48 +0900 pbuilder (0.93) unstable; urgency=low diff --git a/pbuilder-runhooks b/pbuilder-runhooks index e6e662e..ee1e9c3 100644 --- a/pbuilder-runhooks +++ b/pbuilder-runhooks @@ -18,6 +18,13 @@ # # HISTORY: # $Log$ +# Revision 1.16 2003/11/16 07:08:54 dancer +# + * THANKS: add +# + +# + * pbuilder-runhooks: fix warning messages to be more correct, thanks +# + to Daniel Martin. +# + +# # Revision 1.15 2003/03/10 10:02:11 dancer # +2003-03-10 Junichi Uekawa <dancer@debian.org> # + @@ -159,8 +166,12 @@ function executehooks () { $CHROOTEXEC "$hooks/"$(basename "$fn") echo " -> user script $fn finished" else - filetype=$(basename "$fn" ) - echo "W: execute priv not set on file $filetype, not executing." + if [ -f "$fn" ]; then + filetype=$(basename "$fn" ) + echo "W: execute priv not set on file $filetype, not executing." + else + echo "W: no hooks of type ${prefix} found" + fi fi ;; esac |