aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2001-09-29 17:17:43 +0000
committerdancer <dancer>2001-09-29 17:17:43 +0000
commit55edc0c98d41d89e24c4e3e44e746396d0e0abba (patch)
treedf92058ea42e7e8d18943c605ce542f5b5437a51
parentd3fc88559137fcfd2a74edd45f730b9ca4d27fd3 (diff)
downloadpbuilder-55edc0c98d41d89e24c4e3e44e746396d0e0abba.tar
pbuilder-55edc0c98d41d89e24c4e3e44e746396d0e0abba.tar.gz
update
-rw-r--r--debian/changelog6
-rwxr-xr-xpbuilder-buildpackage2
2 files changed, 5 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index dab9739..f93bdde 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -23,10 +23,12 @@ pbuilder (0.6.0.prerelease.20010930) unstable; urgency=low
* removed pushd and popd from runhooks, just because
I don't think it looks cute.
* temporal upload ...
- * logging what's copied in build target, parsing of .dsc
+ * logging what's copied in build target, parsing of .dsc (for debugging?)
* updated README file, to have some contents
+ * changed pbuilder-buildpackage .dsc parser, to see if things improve.
+ It used to catch a bogus entry "./"
- -- Junichi Uekawa <dancer@debian.org> Sun, 30 Sep 2001 02:05:26 +0900
+ -- Junichi Uekawa <dancer@debian.org> Sun, 30 Sep 2001 02:09:52 +0900
pbuilder (0.6) unstable; urgency=low
diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage
index 8c93342..3fc6b9a 100755
--- a/pbuilder-buildpackage
+++ b/pbuilder-buildpackage
@@ -8,7 +8,7 @@ function copydsc () {
for FILE in \
"$DSCFILE" \
$(cat "$DSCFILE" | \
- awk 'BEGIN{p=0} {if (p){print "'$(dirname "$DSCFILE")'/" $3}} /^Files:/{p=1} /^$/ {p=0}') ; do
+ awk 'BEGIN{p=0} /^$/ {p=0}' {if (p){print "'$(dirname "$DSCFILE")'/" $3}} /^Files:/{p=1}) ; do
echo " -> copying [$FILE]"
cp "$FILE" "$TARGET" ;
done