diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-26 12:13:33 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-26 12:37:02 +0200 |
commit | d33783f5db602d664925dbef62d91452df80a889 (patch) | |
tree | 18fe715c09a1cc4e15064d5f64c1285d45fc33ce /t/lflags.sh | |
parent | 73a09981c3ed6932a319768bfb7a5fffc80457b3 (diff) | |
download | automake-d33783f5db602d664925dbef62d91452df80a889.tar.gz |
tests: remove some useless 'unset' of variables
They are redundant, now that we no longer call "make -e".
* t/javaflags.sh: Don't unset JAVAC.
* t/lflags.sh: Don't unset LEX.
* t/lflags2.sh: Likewise.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/lflags.sh')
-rw-r--r-- | t/lflags.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/t/lflags.sh b/t/lflags.sh index ce6ccc8de..a7a59270a 100644 --- a/t/lflags.sh +++ b/t/lflags.sh @@ -29,10 +29,6 @@ echo 'extern int dummy;' >> lex.yy.c END chmod a+x fake-lex -# Remove Lex from the environment, so that it won't interfere -# with 'make -e' below. -unset LEX - cat >> configure.ac <<'END' AC_SUBST([CC], [false]) # Simulate presence of Lex using our fake-lex script. |