diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-15 22:18:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-15 22:18:12 +0000 |
commit | 2c97f3f75b896507350d56de4cd294c1ce8a3c6d (patch) | |
tree | d4429719c3a369098f31c44f471db9422c9cf653 | |
parent | 304665f2246dd05a37466a20b6d4394d72205380 (diff) | |
download | coreutils-2c97f3f75b896507350d56de4cd294c1ce8a3c6d.tar.xz |
Use $(VAR) rather than @VAR@, now that we can rely on automake to
emit a definition for each substituted variable.
Remove definition of PERL.
-rw-r--r-- | tests/Makefile.am.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Makefile.am.in b/tests/Makefile.am.in index 14ad85ad7..c7ddcc606 100644 --- a/tests/Makefile.am.in +++ b/tests/Makefile.am.in @@ -6,8 +6,7 @@ EXTRA_DIST = Test.pm $x-tests $(explicit) $(maint_gen) noinst_SCRIPTS = $x-tests -PERL = @PERL@ -editpl = sed -e 's,@''PERL''@,$(PERL),g' -e 's,@''srcdir''@,@srcdir@,g' +editpl = sed -e 's,@''PERL''@,$(PERL),g' -e 's,@''srcdir''@,$(srcdir),g' TESTS = $x-tests |