diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-10-10 14:32:24 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-10-10 14:41:27 +0200 |
commit | bdbf9f1ba21fda5ccd615f09086da6a4239df543 (patch) | |
tree | cdce9de5e5a5ee083bef1468ebec62d4dab6c5c3 /tests | |
parent | 5db565f6681bab418a2e10de918d322c5a829623 (diff) | |
download | grep-bdbf9f1ba21fda5ccd615f09086da6a4239df543.tar.gz |
tests: tiny simplification in TESTS_ENVIRONMENT definition
* tests/Makefile.am (TESTS_ENVIRONMENT): Remove redundant use of
`export'.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 736df9e2..13d3ca6f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -121,7 +121,7 @@ TESTS_ENVIRONMENT = \ CC='$(CC)' \ GREP_TEST_NAME=`echo $$tst|sed 's,^\./,,;s,/,-,g'` \ MAKE=$(MAKE) \ - MALLOC_PERTURB_=$(MALLOC_PERTURB_); export MALLOC_PERTURB_ \ + MALLOC_PERTURB_=$(MALLOC_PERTURB_) \ PACKAGE_BUGREPORT='$(PACKAGE_BUGREPORT)' \ PACKAGE_VERSION=$(PACKAGE_VERSION) \ PERL='$(PERL)' \ |