From: Bruno Haible Date: Mon, 7 Feb 2005 12:02:38 +0000 (+0000) Subject: Reapply earlier fix. X-Git-Tag: v0.14.2~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56e317b6bb0c5dc5b98ed7a240fa845ba75bcf85;p=thirdparty%2Fgettext.git Reapply earlier fix. --- diff --git a/ChangeLog b/ChangeLog index 347c211e2..8664c5449 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ * config/install-sh: Upgrade to automake-1.9.4. * config/mdate-sh: Upgrade to automake-1.9.4. * config/missing: Upgrade to automake-1.9.4. + 2002-03-07 Bruno Haible + * config/missing (makeinfo): Don't call touch without arguments + if the source texinfo file doesn't contain a @setfilename + command. + Reported by Miroslaw Dobrzanski-Neumann . * config/mkinstalldirs: Upgrade to automake-1.9.4. * config/ylwrap: Upgrade to automake-1.9.4. Reported by Albert Chin-A-Young . diff --git a/config/missing b/config/missing index 64b5f901d..7e58e7fbb 100755 --- a/config/missing +++ b/config/missing @@ -293,7 +293,9 @@ WARNING: \`$1' is $msg. You should only need it if file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi - touch $file + if test -n "$file"; then + touch $file + fi ;; tar)