From aadfee78ac280dadfa83af581befe90e1f493031 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 20 Sep 2006 11:15:27 +0000 Subject: [PATCH] Fix testsuite to run under PHP after recent PHP testsuite changes. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9308 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Examples/Makefile.in b/Examples/Makefile.in index f25ebd18f..a8f75ec7d 100644 --- a/Examples/Makefile.in +++ b/Examples/Makefile.in @@ -680,9 +680,10 @@ php4_cpp: $(SRCS) # ----------------------------------------------------------------- PHP4=@PHP4@ +SCRIPT ?= runme.php4 -php4_run: - env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH $(PHP4) -q -d extension_dir=. runme.php4 +php4_run: + env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH $(PHP4) -q -d extension_dir=. $(SCRIPT) # ----------------------------------------------------------------- # Cleaning the PHP4 examples