diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-22 15:58:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-22 15:58:06 +0000 |
commit | 8529df5a59358a5ae4b904b40c5c6aad3a260099 (patch) | |
tree | 051bff0b013898deb8b59f43e6c718beed2c55cd /tests/mv | |
parent | 52be7173c068719c87a2c59cc279b6e4bbe4c13a (diff) | |
download | coreutils-8529df5a59358a5ae4b904b40c5c6aad3a260099.tar.xz |
.
Diffstat (limited to 'tests/mv')
-rw-r--r-- | tests/mv/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mv/Makefile.in b/tests/mv/Makefile.in index c385d4074..c4bd0ac15 100644 --- a/tests/mv/Makefile.in +++ b/tests/mv/Makefile.in @@ -48,6 +48,7 @@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +install_sh_DATA = $(install_sh) -c -m 644 INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_HEADER = $(INSTALL_DATA) transform = @program_transform_name@ @@ -116,7 +117,7 @@ install_sh = @install_sh@ AUTOMAKE_OPTIONS = 1.3 gnits -TESTS = childproof i-4 update i-2 mv-special-1 \ +TESTS = dup-source childproof i-4 update i-2 mv-special-1 \ into-self into-self-2 into-self-3 into-self-4 \ backup-is-src \ i-1 hard-link-1 force partition-perm to-symlink dir-file diag \ @@ -209,7 +210,7 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + 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 \ $(mkinstalldirs) "$(distdir)/$$dir"; \ |