aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--debian/changelog6
-rw-r--r--pdebuild4
-rw-r--r--pdebuild-user-mode-linux2
4 files changed, 14 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b4df3b..4a97b72 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-29 Junichi Uekawa <dancer@debian.org>
+
+ * pdebuild-user-mode-linux, pdebuild: typo fix, thanks
+ Clint Adams <schizo@debian.org>, Bug#287041
+
2004-12-11 Junichi Uekawa <dancer@debian.org>
* Documentation/pbuilder-doc.xml: some more minor fixes before it is released
diff --git a/debian/changelog b/debian/changelog
index f3ae4d1..6a19228 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pbuilder (0.120) unstable; urgency=low
+
+ * pdebuild/pdebuild-user-mode-linux typo fix in dpkg-checkbuilddeps. (closes: #287041)
+
+ -- Junichi Uekawa <dancer@debian.org> Wed, 29 Dec 2004 20:13:30 +0900
+
pbuilder (0.119) unstable; urgency=low
* pbuilderrc.5:Fix manual page formatting (closes: #279700)
diff --git a/pdebuild b/pdebuild
index d373ca1..7253c9c 100644
--- a/pdebuild
+++ b/pdebuild
@@ -36,7 +36,7 @@ ARCHITECTURE=$(dpkg-architecture -qDEB_HOST_ARCH)
if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then
${PBUILDERROOTCMD} pbuilder execute "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --bindmounts $(readlink -f ..) /usr/lib/pbuilder/pdebuild-internal ${PWD} --debbuildopts "${DEBBUILDOPTS}"
else
- if [ ! dpkg-checkbuilddeps -B ]; then
+ if ! dpkg-checkbuilddeps -B ; then
echo "W: Unmet build-dependency in source"
fi
echo "dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD} $DEBBUILDOPTS" | /bin/bash
@@ -45,4 +45,4 @@ fi
if [ "${AUTO_DEBSIGN}" = "yes" ]; then
debsign "${BUILDRESULT}/${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes"
-fi \ No newline at end of file
+fi
diff --git a/pdebuild-user-mode-linux b/pdebuild-user-mode-linux
index 95ade77..e4d0ecf 100644
--- a/pdebuild-user-mode-linux
+++ b/pdebuild-user-mode-linux
@@ -42,7 +42,7 @@ if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then
fi
pbuilder-user-mode-linux execute "$@" --bindmounts $(readlink -f ..) /usr/lib/pbuilder/pdebuild-internal ${PWD} --debbuildopts "${DEBBUILDOPTS}"
else
- if [ ! dpkg-checkbuilddeps -B ]; then
+ if ! dpkg-checkbuilddeps -B; then
echo "W: Unmet build-dependency in source"
fi
echo "dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD} $DEBBUILDOPTS" | /bin/bash