summaryrefslogtreecommitdiffstats
path: root/remote/modules/debug/debug.build
blob: e791d3476831223ee7ebf2f79096a2ea9ac033e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fetch_source() {
	:
}

build() {

	for BIN in $REQUIRED_BINARIES; do
		BIN_LOCATION=$(which ${BIN})
		if [ ! -z ${BIN_LOCATION} -a -e ${BIN_LOCATION} ]; then
			tarcopy "$(get_link_chain ${BIN_LOCATION})" "${MODULE_BUILD_DIR}"
		else
			pwarning "'${BIN}' not found on the system."
		fi
	done
}

post_copy() {
	:
}