diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-18 17:59:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-18 17:59:36 +0000 |
commit | 2ce61398cea4c1ede885c4694b9db5064246c9a7 (patch) | |
tree | 1749df77c2c82a78dc096fcb21f2f1540e79c8d6 /tests/tr | |
parent | 2e9825b4e78df113bc18c472f7eea297ea899676 (diff) | |
download | coreutils-2ce61398cea4c1ede885c4694b9db5064246c9a7.tar.xz |
.
Diffstat (limited to 'tests/tr')
-rw-r--r-- | tests/tr/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tr/Makefile.in b/tests/tr/Makefile.in index c4d6d0444..8008ed647 100644 --- a/tests/tr/Makefile.in +++ b/tests/tr/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@ @@ -230,7 +231,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"; \ |