From: Frank Lichtenheld Date: Thu, 20 Sep 2007 01:35:32 +0000 (+0200) Subject: dpkg-source: Use print instead of printf if printf is not needed X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca39b2a4cc4b32422453d27030ab86930f51cd4d;p=dpkg dpkg-source: Use print instead of printf if printf is not needed --- diff --git a/ChangeLog b/ChangeLog index 11c8bc5e..043aec3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-09-20 Frank Lichtenheld + * scripts/dpkg-sources.pl (version): Don't use + printf if we don't need it, use print instead. + * scripts/dpkg-buildpackage.sh (usage): Fix typo s/dpkg-genchangs/dpkg-genchanges/ diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index 898ea833..819c468b 100755 --- a/scripts/dpkg-source.pl +++ b/scripts/dpkg-source.pl @@ -97,10 +97,10 @@ $SIG{'QUIT'} = \&exit_handler; sub version { printf _g("Debian %s version %s.\n"), $progname, $version; - printf _g(" + print _g(" Copyright (C) 1996 Ian Jackson and Klee Dienes."); - printf _g(" + print _g(" This is free software; see the GNU General Public Licence version 2 or later for copying conditions. There is NO warranty. ");