1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From: =?utf-8?q?Ond=C5=99ej_Sur=C3=BD?= <ondrej@sury.org>
Date: Thu, 3 Mar 2016 11:15:21 +0100
Subject: pecl command needs to run without -n to pickup default PHP cli
configuration, so XML module gets loaded
---
scripts/pecl.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/pecl.sh b/scripts/pecl.sh
index 332890c..a2c86eb 100755
--- a/scripts/pecl.sh
+++ b/scripts/pecl.sh
@@ -25,4 +25,4 @@ else
fi
fi
-exec $PHP -C -n -q $INCARG -d date.timezone=UTC -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@"
+exec $PHP -C -q $INCARG -d date.timezone=UTC -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@"
|