mirror of
https://github.com/php/web-rmtools.git
synced 2026-03-24 01:02:11 +01:00
[PR #13] Support extensions with config.w32 in subfolder #26
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/php/web-rmtools/pull/13
State: closed
Merged: No
Some extensions have the actual extension code in a subfolder of the
toplevel package folder, and as such can't currently be built. For
instance, xhprof has
xhprof-x.y.z/extension/config.w32, but we onlycheck for
xhprof-x.y.z/config.w32andconfig.w32.Changing
PeclExt::tmp_extract_pathto point to the subfolder whichcontains ' config.w32` wouldn't work, though, because then the folders
in package.xml won't match anymore. Therefore, we attempt to copy the
whole subfolder one level up, and resume the build process.