]> sourceware.org Git - automake.git/commitdiff
Nothing
authorTom Tromey <tromey@redhat.com>
Thu, 4 Jan 1996 00:33:08 +0000 (00:33 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 4 Jan 1996 00:33:08 +0000 (00:33 +0000)
Makefile.in

index ea8964e1234f261766aace5f70e617354f6e8ced..15a27cfb36d99f266e944c3ee336f38c54a5fd90 100644 (file)
@@ -81,8 +81,8 @@ COPYING Makefile.am texinfo.tex NEWS aclocal.m4 install-sh
 PACKAGE = @PACKAGE@
 VERSION = @VERSION@
 
-DISTFILES = $(SOURCES) $(HEADERS) $(TEXINFOS) $(INFOS) $(MANS) \
-       $(DIST_OTHER) $(DIST_COMMON) $(DATA)
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(INFOS) $(MANS) \
+       $(DIST_OTHER) $(DATA)
 default: all
 
 
@@ -143,13 +143,8 @@ automake.info: automake.texi version.texi
 install-info: $(INFO_DEPS)
        $(top_srcdir)/mkinstalldirs $(infodir)
        for file in $(INFO_DEPS); do            \
-         if test -f $$file; then               \
-           d=.;                                \
-         else                                  \
-           d=$(srcdir);                        \
-         fi;                                   \
-         for ifile in `cd $$d && echo $${file}*`; do \
-           $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
+         for ifile in $(srcdir)/$${file}*; do  \
+           $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
          done;                                 \
        done
 
This page took 0.027481 seconds and 5 git commands to generate.