diff options
author | Jim Meyering <jim@meyering.net> | 2002-09-22 06:34:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-09-22 06:34:18 +0000 |
commit | 7b355ee4761cf333485a753665e9a89345d86167 (patch) | |
tree | 91f58493d3003e3435c5203ded754a54581b9f68 /tests/rmdir | |
parent | 3be0542f6dfa0bf45935aecf7f1cf774d7c2fb06 (diff) | |
download | coreutils-7b355ee4761cf333485a753665e9a89345d86167.tar.xz |
upgrade to automake-1.6f
Diffstat (limited to 'tests/rmdir')
-rw-r--r-- | tests/rmdir/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/rmdir/Makefile.in b/tests/rmdir/Makefile.in index 3a1608577..6a341493b 100644 --- a/tests/rmdir/Makefile.in +++ b/tests/rmdir/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.6b from Makefile.am. +# Makefile.in generated by automake 1.6f from Makefile.am. # @configure_input@ # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 @@ -50,6 +50,7 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DF_PROG = @DF_PROG@ @@ -146,7 +147,8 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ AUTOMAKE_OPTIONS = 1.4 gnits -TESTS = ignore +TESTS = ignore t-slash + EXTRA_DIST = $(TESTS) TESTS_ENVIRONMENT = \ top_srcdir=$(top_srcdir) \ @@ -255,7 +257,11 @@ top_distdir = ../.. distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - @list='$(DISTFILES)'; for file in $$list; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ |