]> sourceware.org Git - automake.git/commitdiff
Only do version.texi processing if requested.
authorTom Tromey <tromey@redhat.com>
Sun, 26 Nov 1995 05:39:41 +0000 (05:39 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 26 Nov 1995 05:39:41 +0000 (05:39 +0000)
automake.in

index 96fc267c0ecdd133431e60307603a8c470953bbf..58f62160dc5d24a7476cc2b3368bd31576937539 100755 (executable)
@@ -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.
This page took 0.027825 seconds and 5 git commands to generate.