]> err.no Git - dpkg/commitdiff
Use proper name for .changes file when building source-only
authorWichert Akkerman <wakkerma@debian.org>
Thu, 23 Nov 2000 16:12:50 +0000 (16:12 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Thu, 23 Nov 2000 16:12:50 +0000 (16:12 +0000)
ChangeLog
scripts/dpkg-buildpackage.sh

index bed5281f971ddc1ed7de1d6d64617b7192fcdf31..1aa7d94e3aca2fe57f95e30c0b6512f07deb9349 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Nov 23 15:48:53 CET 2000 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-buildpackage.sh: Name .changes file properly if
+    we are doing a source-only build
+
 Thu Nov  9 13:53:21 CET 2000 Wichert Akkerman <wakkerma@debian.org>
 
   * doc/Makefile.in: use internals.html/index.html as dependency target
index fb5d3fef8e0b95b6caf5065cc1169fadfa800204..d1f161150f46b0a7fc761b6f1f24580c8ca7f8c2 100755 (executable)
@@ -7,9 +7,11 @@ version="1.3.0"; # This line modified by Makefile
 progname="`basename \"$0\"`"
 usageversion () {
        cat >&2 <<END
-Debian GNU/Linux dpkg-buildpackage $version.  Copyright (C) 1996
-Ian Jackson.  This is free software; see the GNU General Public Licence
-version 2 or later for copying conditions.  There is NO warranty.
+Debian GNU/Linux dpkg-buildpackage $version.  
+Copyright (C) 1996 Ian Jackson.
+Copyright (C) 2000 Wichert Akkerman
+This is free software; see the GNU General Public Licence version 2
+or later for copying conditions.  There is NO warranty.
 
 Usage: dpkg-buildpackage [options]
 Options: -r<gain-root-command>
@@ -131,8 +133,11 @@ if [ -n "$maint" ]; then maintainer="$maint";
 else mustsetvar maintainer "`dpkg-parsechangelog | sed -n 's/^Maintainer: //p'`" "source maintainer"; fi
 eval `dpkg-architecture -a${arch} -t${targetgnusystem} -s`
 archlist=`dpkg-architecture -a${targetarch} -t${targetgnusystem} -f 2> /dev/null`
-mustsetvar arch "`dpkg-architecture -a${targetarch} -t${targetgnusystem} -qDEB_HOST_ARCH`" "build architecture"
-
+if [ x$sourceonly = x ]; then
+       mustsetvar arch "`dpkg-architecture -a${targetarch} -t${targetgnusystem} -qDEB_HOST_ARCH`" "build architecture"
+else
+       arch=source
+fi
 sversion=`echo "$version" | perl -pe 's/^\d+://'`
 pv="${package}_${sversion}"
 pva="${package}_${sversion}${arch:+_${arch}}"