From: Tom Tromey Date: Sun, 26 Nov 1995 05:39:41 +0000 (+0000) Subject: Only do version.texi processing if requested. X-Git-Tag: Release-0-25~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aeb3929d9c9a75bc5ce407961cf1631f03fc8db5;p=thirdparty%2Fautomake.git Only do version.texi processing if requested. --- diff --git a/automake.in b/automake.in index 96fc267c0..58f62160d 100755 --- a/automake.in +++ b/automake.in @@ -315,7 +315,11 @@ p am_infobase=`echo "$TEXINFOS" | sed 's/\.texi//'` - am_deps=version.texi + am_deps= + # Only do version.texi if requested. + if grep version.texi $TEXINFOS; then + am_deps="version.texi $am_deps" + fi if eval "test \"\$var_${am_infobase}_TEXINFOS\" = explicit"; then # User supplied eg automake_TEXINFOS. So use those as # dependencies.