diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | pdebuild | 4 | ||||
-rw-r--r-- | pdebuild-user-mode-linux | 2 |
4 files changed, 14 insertions, 3 deletions
@@ -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) @@ -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 |