diff options
author | Jim Meyering <jim@meyering.net> | 1996-08-17 17:53:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-08-17 17:53:24 +0000 |
commit | afddedbd9f1f2c45bc8bf0592cfec7c2c4879a20 (patch) | |
tree | e45e45ca91213a29ee7e2ae58d9044ecb286d09e | |
parent | b98971b7a068d0a993ab9b77d7a135a8b6b17752 (diff) | |
download | coreutils-afddedbd9f1f2c45bc8bf0592cfec7c2c4879a20.tar.xz |
.
-rw-r--r-- | tests/tr/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/tr/Makefile.in b/tests/tr/Makefile.in index 43f036968..f8c6d91ab 100644 --- a/tests/tr/Makefile.in +++ b/tests/tr/Makefile.in @@ -40,7 +40,7 @@ transform = @program_transform_name@ AUTOMAKE_OPTIONS = 1.0 -EXTRA_DIST = build-script.pl test.data.pl +EXTRA_DIST = build-script.pl Trtest.pm noinst_SCRIPTS = tr-tests PERL = @PERL@ @@ -50,8 +50,8 @@ TESTS = tr-tests SUFFIXES = .pl -MAINTAINERCLEANFILES = tr-tests t*.in t*.exp t*.err -CLEANFILES = t*.out +MAINTAINERCLEANFILES = tr-tests t*.in t*.exp +CLEANFILES = t*.out t*.err mkinstalldirs = $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../../config.h CONFIG_CLEAN_FILES = @@ -166,8 +166,8 @@ mostlyclean-generic distclean-generic clean-generic \ maintainer-clean-generic clean mostlyclean distclean maintainer-clean -tr-tests: build-script test.data.pl - ./build-script test.data.pl > $@.n +tr-tests: build-script Trtest.pm + ./build-script Trtest.pm > $@.n mv $@.n $@ chmod 755 $@ |