blob: d5669ff938eb436a80362b877234d3a0fd07e893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#
# set -o errexit -o noglob are assumed.
#
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 "${@}";
};
# vim:filetype=sh
|