Bug 6140 - --enable-fileinfo not applied for php package
Summary: --enable-fileinfo not applied for php package
Status: RESOLVED FIXED
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: unspecified
Hardware: All Linux
: P5 minor
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-27 14:23 UTC by Aleksandar
Modified: 2013-03-27 19:33 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!