summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorniklas <niklas>2008-07-31 21:33:49 +0000
committerniklas <niklas>2008-07-31 21:33:49 +0000
commit6ac8ab8f32f17b4b658374cb9e6fbf34a39b7b4e (patch)
treeff12d073a4340980416c91ac05a8bb0107578c4d /Makefile
parent10eb8b69aa24e5c58a8520a9d99e76a2c2a9ad62 (diff)
downloadlrexlib-6ac8ab8f32f17b4b658374cb9e6fbf34a39b7b4e.tar.gz
Unset LUA_INIT before running tests to avoid problems
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9c017c3..521baeb 100755
--- a/Makefile
+++ b/Makefile
@@ -24,13 +24,13 @@ build_onig:
make -C $(ONIG) -f rex_onig.mak
test_pcre:
- cd test && lua ./runtest.lua -d../$(PCRE) pcre
+ cd test && LUA_INIT= lua ./runtest.lua -d../$(PCRE) pcre
test_posix:
- cd test && lua ./runtest.lua -d../$(POSIX) posix
+ cd test && LUA_INIT= lua ./runtest.lua -d../$(POSIX) posix
test_onig:
- cd test && lua ./runtest.lua -d../$(ONIG) onig
+ cd test && LUA_INIT= lua ./runtest.lua -d../$(ONIG) onig
clean_pcre:
make -C $(PCRE) -f rex_pcre.mak clean