summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-08-17 17:27:03 +0000
committerJim Meyering <jim@meyering.net>1996-08-17 17:27:03 +0000
commitdaa3462c64b5e2b45dd03ee00bac56c6a271da12 (patch)
treea6e10e99c6f7e8b819e51974c0e85204062d85cd /tests
parentb7bf84fd73e6ebb4ea1a3417a31cef11511b8b46 (diff)
downloadcoreutils-daa3462c64b5e2b45dd03ee00bac56c6a271da12.tar.xz
Don't use main anymore.
Diffstat (limited to 'tests')
-rw-r--r--tests/tr/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tr/Makefile.am b/tests/tr/Makefile.am
index b29d61ca7..1fee71f4a 100644
--- a/tests/tr/Makefile.am
+++ b/tests/tr/Makefile.am
@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = 1.0
-EXTRA_DIST = build-script.pl main test.data.pl
+EXTRA_DIST = build-script.pl test.data.pl
noinst_SCRIPTS = tr-tests
PERL = @PERL@
@@ -10,8 +10,8 @@ editpl = sed -e 's,@''PERL''@,$(PERL),g'
TESTS = tr-tests
-tr-tests: main build-script test.data.pl
- ./main test.data.pl > $@.n
+tr-tests: build-script test.data.pl
+ ./build-script test.data.pl > $@.n
mv $@.n $@
chmod 755 $@