Sfoglia il codice sorgente

Fix bug in dpkg-buildpackage that broke signing with -sgpg

Wichert Akkerman 27 anni fa
parent
commit
4c2dd6e009
2 ha cambiato i file con 13 aggiunte e 2 eliminazioni
  1. 11 0
      ChangeLog
  2. 2 2
      scripts/dpkg-buildpackage.sh

+ 11 - 0
ChangeLog

@@ -1,3 +1,14 @@
+Tue Sep 28 01:14:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
+
+  * Fix typo in dpkg-buildpackage that broke signing if only -sgpg was given
+
+Mon Sep 27 04:25:32 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
+
+  * Change changelog-style for ChangeLog, the package-style doesn't work
+    well for CVS IMHO.
+  * Merged patch from Adam Heath <doogie@debian.org> to make update-alternatives.pl
+    work across filesystems
+
 dpkg (1.4.1.12) unstable; urgency=low
 
   * Non-maintainer release.

+ 2 - 2
scripts/dpkg-buildpackage.sh

@@ -82,7 +82,7 @@ do
 done
 
 if test -n "$forcesigninterface" ; then
-  signinterface=$forcesigninterace
+  signinterface=$forcesigninterface
 else
   signinterface=$signcommand
 fi
@@ -114,7 +114,7 @@ pv="${package}_${sversion}"
 pva="${package}_${sversion}${arch:+_${arch}}"
 
 signfile () {
-	if test $signinterface = gpg ; then
+	if test "$signinterface" = "gpg" ; then
 		(cat "../$1" ; echo "") | \
 		$signcommand --local-user "${signkey:-$maintainer}" --clearsign --armor \
 			--textmode  > "../$1.asc"