diff options
author | Jim Meyering <jim@meyering.net> | 1996-12-10 21:11:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-12-10 21:11:55 +0000 |
commit | b44299cfd7cd8777fb2f4823d2e803e7944aca62 (patch) | |
tree | 33c29d671e9d4b62cec74f740ef3f5bf04275024 /tests/tr | |
parent | 5ea5ea9d2c80579f556964abf19b105f54fced76 (diff) | |
download | coreutils-b44299cfd7cd8777fb2f4823d2e803e7944aca62.tar.xz |
mk-script.pl: Rename from build-script.pl.
Diffstat (limited to 'tests/tr')
-rw-r--r-- | tests/tr/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/tr/Makefile.am b/tests/tr/Makefile.am index 0740d81ef..cb71a4045 100644 --- a/tests/tr/Makefile.am +++ b/tests/tr/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to produce Makefile.in. -AUTOMAKE_OPTIONS = 1.1c - x = tr t = \ t1 t2 t3 t4 t5 t6 t7 t8 t9 tA tB tC tD tE tF tG tH tI tR0.0 tR0.1 tR1.0 \ @@ -13,7 +11,7 @@ exp = $(t:=.exp) out = $(t:=.out) err = $(t:=.err) -EXTRA_DIST = build-script.pl Test.pm $x-tests $(in) $(exp) +EXTRA_DIST = mk-script.pl Test.pm $x-tests $(in) $(exp) noinst_SCRIPTS = $x-tests PERL = @PERL@ @@ -21,8 +19,8 @@ editpl = sed -e 's,@''PERL''@,$(PERL),g' -e 's,@''srcdir''@,@srcdir@,g' TESTS = $x-tests -$x-tests: @MAINT@ build-script Test.pm - ./build-script ../../src/$x > $@.n +$x-tests: @MAINT@mk-script Test.pm + ./mk-script ../../src/$x > $@.n mv $@.n $@ chmod 755 $@ |