summaryrefslogtreecommitdiffhomepage
path: root/vars/binutils.vars
blob: c77273192020bc7b3b8cd7d19684bb901d53d957 (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 is 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