| |
| |
| |
| |
| pkg_binutils_configure_patch_post() { |
| local _overlay_dname="${BUILD_WORKDIR}/chainport/overlay/m${PKG_NAME%%_*}"; |
| if [ -d "${_overlay_dname}" ]; then |
| tar -C "${_overlay_dname}" -cpf - . | tar -C "${PKG_BASE_DIR}/${PKG_SUBDIR}" -xpf -; |
| fi; |
| }; |
| |
| pkg_binutils_host_configure_patch_post() { |
| pkg_binutils_configure_patch_post "${@}"; |
| }; |
| |
| pkg_binutils_host_mingw32_configure_patch_post() { |
| pkg_binutils_configure_patch_post "${@}"; |
| }; |
| |
| pkg_binutils_mingw32_configure_patch_post() { |
| pkg_binutils_configure_patch_post "${@}"; |
| }; |
| |
| |