mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 19:34:06 +00:00
Merge pull request #254001 from NixOS/php/update-configure-phase
php: fix `genfiles` calls
This commit is contained in:
commit
701ab935f7
@ -271,8 +271,8 @@ let
|
||||
|
||||
./buildconf --copy --force
|
||||
|
||||
if test -f $src/genfiles; then
|
||||
./genfiles
|
||||
if [ -f "scripts/dev/genfiles" ]; then
|
||||
./scripts/dev/genfiles
|
||||
fi
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace configure --replace "-lstdc++" "-lc++"
|
||||
|
@ -31,6 +31,7 @@
|
||||
, pam
|
||||
, pcre2
|
||||
, postgresql
|
||||
, bison
|
||||
, re2c
|
||||
, readline
|
||||
, rsync
|
||||
@ -101,14 +102,22 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
autoconf
|
||||
pkg-config
|
||||
re2c
|
||||
bison
|
||||
];
|
||||
|
||||
inherit configureFlags internalDeps buildInputs zendExtension doCheck;
|
||||
|
||||
preConfigurePhases = [
|
||||
"genfiles"
|
||||
"cdToExtensionRootPhase"
|
||||
];
|
||||
|
||||
genfiles = ''
|
||||
if [ -f "scripts/dev/genfiles" ]; then
|
||||
./scripts/dev/genfiles
|
||||
fi
|
||||
'';
|
||||
|
||||
cdToExtensionRootPhase = ''
|
||||
# Go to extension source root.
|
||||
cd "ext/${extName}"
|
||||
|
Loading…
Reference in New Issue
Block a user