Bug when using custom compilation configuration PHP 7.1 with Custombuild plugin

ogierepier

New member
Joined
Jun 8, 2017
Messages
2
Hi,

I am using DirectAdmin 1.54.1 with Custombuild 2.0.0 (rev: 1935) with the plugin @ 1.0.23.
I wanted to recompile php 7.1 with bzip2 support so I used the customize compilation tool of the plugin.
and added the rule

Code:
with-bz2=/usr/local/php71/lib/php/extensions/no-debug-non-zts-20160303

However this resulted in the fact that --enable-fpm and --with-fpm-systemd were printed on the same line in the custom configuration file. And when you tried to build PHP it would fail complaining about an unknown option
Code:
fpm --with-fpm-systemd
I managed to fix it by manually editing the custom configure.php71 file, but I believe this bug could be addressed.

I hope I have provided enough information in order for you to be able to reproduce the bug.
 
Hello,

Shouldn't it be
Code:
--with-bz2=/usr \

?

p.s. just a wild guess according on how I'd specify it in a bash console.
 
Back
Top