From 35bf13d97fc38ced09e53f06f44edd12374b73e2 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 18 Aug 2004 05:14:16 +0000 Subject: [PATCH] fix #29625 (no quotes around the shell variable's value cause ./configure to fail) --- ext/xslt/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4 index 4e4ced285c..d1cf042b6a 100644 --- a/ext/xslt/config.m4 +++ b/ext/xslt/config.m4 @@ -134,7 +134,7 @@ int main () PHP_CHECK_LIBRARY(js, JS_GetRuntime, [ PHP_ADD_LIBRARY_WITH_PATH(js, $PHP_SABLOT_JS_DIR/lib, XSLT_SHARED_LIBADD) - PHP_SABLOT_JS_LIBS=-L$PHP_SABLOT_JS_DIR/lib -ljs + PHP_SABLOT_JS_LIBS="-L$PHP_SABLOT_JS_DIR/lib -ljs" ], [ AC_MSG_ERROR([libjs not found. Please check config.log for more information.]) ], [ -- 2.50.1