blob: a6907df46dca2329f757ed741da00a282d85c68e (
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
25
|
#
# set +o errexit -o noglob -o nounset is assumed.
#
pkg_binutils_configure_patch_post() {
local _overlay_dname="${BUILD_WORKDIR}/chainport/overlay/m${PKG_NAME%%_*}";
if [ -d "${_overlay_dname}" ]\
&& ! tar -C "${_overlay_dname}" -cpf - . | tar -C "${PKG_BASE_DIR}/${PKG_SUBDIR}" -xpf -; then
return 1;
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 textwidth=0
|