diff options
author | Jim Meyering <jim@meyering.net> | 2000-04-08 06:44:35 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-04-08 06:44:35 +0000 |
commit | 19aa1f8a25a0f9fb1d47afdf21ee45dae5219f3c (patch) | |
tree | ec74c49063331d26772a4a20a6b05596fa65c509 /doc | |
parent | 4cfab8f932b6239797b131fd48fd3de0ba540063 (diff) | |
download | coreutils-19aa1f8a25a0f9fb1d47afdf21ee45dae5219f3c.tar.xz |
.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index e5b25689c..adcb7af02 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -1,6 +1,6 @@ # Makefile.in generated automatically by automake 1.4a from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-9, 2000 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -148,7 +148,7 @@ all: all-redirect $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnits doc/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status @@ -305,10 +305,12 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir); \ + cp -pR $$d/$$file $(distdir) \ + || exit 1; \ else \ test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file || :; \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-info |