summaryrefslogtreecommitdiffhomepage
path: root/vars/gdb.vars
blob: 0a5e2eb4604bc9f0e7373736efa6ca429440a03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_gdb_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_gdb_host_configure_patch_post() {
	pkg_gdb_configure_patch_post "${@}";
};

pkg_gdb_minipix_configure_patch_post() {
	pkg_gdb_configure_patch_post "${@}";
};

# vim:filetype=sh textwidth=0