diff options
author | Joe George <joe@zeroc.com> | 2016-08-08 12:02:59 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-08-08 12:04:30 -0400 |
commit | 522e485d004b4fe91b802b3f7d4755ea6eb38c39 (patch) | |
tree | 5add6bcf579257cbc1de02dd5dc60e2244dec42b /php/src | |
parent | Added support for C# ThreadPool synchronization context for async/await (diff) | |
download | ice-522e485d004b4fe91b802b3f7d4755ea6eb38c39.tar.bz2 ice-522e485d004b4fe91b802b3f7d4755ea6eb38c39.tar.xz ice-522e485d004b4fe91b802b3f7d4755ea6eb38c39.zip |
Fix ICE-7267
PHP make tests no longer fails if php-config is missing.
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/php7/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/php7/Makefile b/php/src/php7/Makefile index 8f1f7fe3bae..e240186ed0f 100644 --- a/php/src/php7/Makefile +++ b/php/src/php7/Makefile @@ -27,7 +27,7 @@ OBJS = Communicator.o \ include $(top_srcdir)/config/Make.rules.php -CPPFLAGS := -I. $(CPPFLAGS) $(ICE_FLAGS) $(shell php-config --includes) +CPPFLAGS := -I. $(CPPFLAGS) $(ICE_FLAGS) $(shell $(PHP_CONFIG) --includes) LINKWITH := $(ICE_LIBS) $(CXXLIBS) |