Skip to content
Snippets Groups Projects
Commit f98cf2d2 authored by Stanley Cheung's avatar Stanley Cheung
Browse files

fix php5.6 ext location

parent 452af9d6
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@
set +e
cd $(dirname $0)
module_dir=`php --version | grep -q 'PHP 5.6' && echo '../ext/grpc' || echo '../ext/grpc/modules'`
module_dir=../ext/grpc/modules
php -d extension_dir=$module_dir -d extension=grpc.so \
../tests/interop/interop_client.php $@ 1>&2
......@@ -34,7 +34,7 @@ set -e
cd $(dirname $0)
default_extension_dir=`php -i | grep extension_dir | sed 's/.*=> //g'`
module_dir=`php --version | grep -q 'PHP 5.6' && echo '../ext/grpc' || echo '../ext/grpc/modules'`
module_dir=../ext/grpc/modules
# sym-link in system supplied extensions
for f in $default_extension_dir/*.so
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment