diff options
Diffstat (limited to 'tests')
-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"; \ |