From: Tom Tromey Date: Sun, 26 Nov 1995 06:11:25 +0000 (+0000) Subject: Put blah_TEXINFOS into DIST_COMMON X-Git-Tag: Release-0-25~157 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=b22e56cfb2b610fa04552e4198f46192037313d2;p=automake.git Put blah_TEXINFOS into DIST_COMMON --- diff --git a/automake.in b/automake.in index 914d6cbc..7fcb8699 100755 --- a/automake.in +++ b/automake.in @@ -166,12 +166,13 @@ for am_makefile in $mfiles; do SOURCES= CONFIG_HEADER= SUBDIRS= PROGRAMS= LIBPROGRAMS= SCRIPTS= LIBSCRIPTS= LIBRARIES= TEXINFOS= MANS= AM_PROGRAMS= am_suffixes= + am_recursive_install=no + am_dist_common= # The following are targets that formerly were implemented as # double-colon rules. Nowadays we have to construct such lists # explicitly. installexec= uninstall= id= tags= info= dvi= check= installdata= all='${ALL}' install= - am_recursive_install=no eval `sed -n -f $am_rmnl ${am_makefile}.am | sed -n -f $am_ass` @@ -317,11 +318,13 @@ p # Only do version.texi if requested. if grep version.texi $TEXINFOS > /dev/null; then am_deps="version.texi $am_deps" + am_dist_common="version.texi $am_dist_common" fi if eval "test \"\$var_${am_infobase}_TEXINFOS\" = explicit"; then # User supplied eg automake_TEXINFOS. So use those as # dependencies. am_deps="\$(${am_infobase}_TEXINFOS) $am_deps" + am_dist_common"\$(${am_infobase}_TEXINFOS) $am_dist_common" sed "s/@TEXI@/$TEXINFOS/g" $am_dir/texi-version.am >&5 fi @@ -432,13 +435,13 @@ p # # Look for certain common files and make sure they are included. - dlist= for cfile in $common; do if test -f $am_reldir/$cfile; then - dlist="$dlist $cfile" + am_dist_common="$am_dist_common $cfile" fi done - echo "DIST_COMMON = $dlist" >&4 + echo "DIST_COMMON = $am_dist_common" >&4 + # Include "dist" boilerplate. case "$am_makefile" in */*)