Overview: php package options typing error Steps to Reproduce: Build php package with option: --enable-fileinfo (BR2_PACKAGE_PHP_EXT_FILEINFO) Actual Results: ./configure script will not include --enable-fileinfo even if BR2_PACKAGE_PHP_EXT_FILEINFO is selected. Expected Results: ./configure script should include --enable-fileinfo when BR2_PACKAGE_PHP_EXT_FILEINFO is selected in menuconfig Build Date & Platform: BR 2013.02
Issue is in http://git.buildroot.net/buildroot/tree/package/php/php.mk:60: - $(if $(BR2_PACKAGE_PHP_EXT_FILENIFO),--enable-fileinfo) \ + $(if $(BR2_PACKAGE_PHP_EXT_FILEINFO),--enable-fileinfo) \
Fixed by Gustavoz in git, thanks!