diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-07 22:08:09 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-07 22:12:00 +0100 |
commit | a5d23d4059cdc85956658ca6fca1dc86aa170029 (patch) | |
tree | e3c339c666a366dd638a694adb398ff3ddbbaacb | |
parent | 7485ff4607063faa825ede80d81452fa974ed873 (diff) | |
download | buildroot-a5d23d4059cdc85956658ca6fca1dc86aa170029.tar.gz buildroot-a5d23d4059cdc85956658ca6fca1dc86aa170029.zip |
php: disable FPM interface on Sparc
Building fails with "Sparc v8 and predecessors are not and will not be
supported (see bug report 53310)", so we disable FPM on Sparc.
Fixes:
http://autobuild.buildroot.net/results/6a86f6cf07f6b6dccd7bfaab6d7682f9faf3527b/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/php/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/php/Config.in b/package/php/Config.in index 3020bccd8f..57dabc435f 100644 --- a/package/php/Config.in +++ b/package/php/Config.in @@ -29,6 +29,8 @@ config BR2_PACKAGE_PHP_SAPI_CLI config BR2_PACKAGE_PHP_SAPI_FPM bool "FPM interface" depends on BR2_USE_MMU + # "Sparc v8 and predecessors are not and will not be supported" + depends on !BR2_sparc help PHP-FPM (FastCGI Process Manager) |