From: Jim Meyering Date: Sat, 17 Aug 1996 17:27:03 +0000 (+0000) Subject: Don't use main anymore. X-Git-Tag: TEXTUTILS-1_19b~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daa3462c64b5e2b45dd03ee00bac56c6a271da12;p=thirdparty%2Fcoreutils.git Don't use main anymore. --- diff --git a/tests/tr/Makefile.am b/tests/tr/Makefile.am index b29d61ca72..1fee71f4ab 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 $@