diff options
author | Jim Meyering <jim@meyering.net> | 1999-03-06 21:59:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-03-06 21:59:25 +0000 |
commit | e2fcc9923d3f5487c09caeacc79cbc2bd75dd0a9 (patch) | |
tree | b34eb76a1ee8cc945d0bfcf83eed30e29df34767 /tests/test | |
parent | a7c6ba5e8688dc639622ee535005d9c68e57f472 (diff) | |
download | coreutils-e2fcc9923d3f5487c09caeacc79cbc2bd75dd0a9.tar.xz |
.
Diffstat (limited to 'tests/test')
-rw-r--r-- | tests/test/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test/Makefile.in b/tests/test/Makefile.in index 98e5cbf17..6db3d5f20 100644 --- a/tests/test/Makefile.in +++ b/tests/test/Makefile.in @@ -46,9 +46,10 @@ AUTOMAKE = @AUTOMAKE@ AUTOHEADER = @AUTOHEADER@ INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) +INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_FLAG = transform = @program_transform_name@ NORMAL_INSTALL = : @@ -154,7 +155,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$/$$file $(distdir)/$$file; \ + cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ @@ -209,7 +210,7 @@ uninstall: uninstall-am all-am: Makefile $(SCRIPTS) all-redirect: all-am install-strip: - $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install + $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install installdirs: |