Bug 6140

Summary: --enable-fileinfo not applied for php package
Product: buildroot Reporter: Aleksandar <aleksandar.zivkovic>
Component: OtherAssignee: unassigned
Status: RESOLVED FIXED    
Severity: minor CC: buildroot
Priority: P5    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Host: Target:
Build:

Description Aleksandar 2013-03-27 14:23:15 UTC
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
Comment 1 Aleksandar 2013-03-27 14:24:45 UTC
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) \
Comment 2 Peter Korsgaard 2013-03-27 19:33:13 UTC
Fixed by Gustavoz in git, thanks!