From: Wichert Akkerman Date: Tue, 14 Dec 1999 19:27:49 +0000 (+0000) Subject: fix dpkg-buildpackage -nc option X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78ba8ebbd613d83e02446e4bde323678cff4a900;p=dpkg fix dpkg-buildpackage -nc option --- diff --git a/ChangeLog b/ChangeLog index 1e0fa508..8a0ce917 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ Tue Dec 14 20:08:58 CET 1999 Wichert Akkerman * automake/sysconf.m4: really add the file this time * po/sv.po: new version with minor corrections * main/depcon.c: minor corrections to depisok() + * scripts/dpkg-buildpackage.sh: fix -nc option Mon Dec 13 15:18:03 CET 1999 Wichert Akkerman diff --git a/scripts/dpkg-buildpackage.sh b/scripts/dpkg-buildpackage.sh index d7bb2cc6..21992e42 100755 --- a/scripts/dpkg-buildpackage.sh +++ b/scripts/dpkg-buildpackage.sh @@ -75,7 +75,7 @@ do -i*) diffignore=$1;; -tc) cleansource=true ;; -t*) targetgnusystem="$value" ;; # Order DOES matter! - -nc) noclean=true; binaryonly=-b ;; + -nc) noclean=true; if [ -z "$binaryonly" ]; then binaryonly=-b; fi ;; -b) binaryonly=-b ;; -B) binaryonly=-B; binarytarget=binary-arch ;; -v*) since="$value" ;;