summaryrefslogtreecommitdiffstats
path: root/remote/modules/debug-report-bwlp/module.build
diff options
context:
space:
mode:
Diffstat (limited to 'remote/modules/debug-report-bwlp/module.build')
-rw-r--r--remote/modules/debug-report-bwlp/module.build23
1 files changed, 23 insertions, 0 deletions
diff --git a/remote/modules/debug-report-bwlp/module.build b/remote/modules/debug-report-bwlp/module.build
new file mode 100644
index 00000000..1be608b8
--- /dev/null
+++ b/remote/modules/debug-report-bwlp/module.build
@@ -0,0 +1,23 @@
+fetch_source() {
+ :
+}
+
+build() {
+
+ for BIN in $REQUIRED_BINARIES; do
+ OPT="${BIN:0:1}"
+ [[ "$BIN" == @* ]] && BIN=$(echo "$BIN" | cut -c 2-)
+ BIN_LOCATION=$(which ${BIN})
+ if [ ! -z ${BIN_LOCATION} -a -e ${BIN_LOCATION} ]; then
+ tarcopy "$(get_link_chain ${BIN_LOCATION})" "${MODULE_BUILD_DIR}"
+ elif [ "$OPT" != "@" ]; then
+ perror "'${BIN}' not found on system."
+ else
+ pwarning "'${BIN}' not found on the system."
+ fi
+ done
+}
+
+post_copy() {
+ :
+}