summaryrefslogtreecommitdiffstats
path: root/core/modules/busybox
diff options
context:
space:
mode:
authorJonathan Bauer2021-07-09 16:40:45 +0200
committerJonathan Bauer2021-07-09 16:40:45 +0200
commit6ee8a94b59230559665b576c0ce04c46630a9075 (patch)
tree5f65c1b10b0793596ebb2ea08244b33f78a64990 /core/modules/busybox
parent[vbox-src] Limit number of jobs depending on host RAM (diff)
downloadmltk-6ee8a94b59230559665b576c0ce04c46630a9075.tar.gz
mltk-6ee8a94b59230559665b576c0ce04c46630a9075.tar.xz
mltk-6ee8a94b59230559665b576c0ce04c46630a9075.zip
bwlp: remove busybox from target
its only needed in stage31. dracut builds it on its own. Both copy it to stage32/stage4 so no need to install it in bwlp target. Also makes the REMOTE_LOCAL_INSTALL check obsolete.
Diffstat (limited to 'core/modules/busybox')
-rw-r--r--core/modules/busybox/module.build7
1 files changed, 1 insertions, 6 deletions
diff --git a/core/modules/busybox/module.build b/core/modules/busybox/module.build
index 27270a2c..fdf89a19 100644
--- a/core/modules/busybox/module.build
+++ b/core/modules/busybox/module.build
@@ -32,12 +32,7 @@ build() {
pinfo "Running make (if this hangs, check for unset options, ie. when you increased the REQUIRED_BRANCH)"
make || perror "failed."
pinfo "Running make install"
- local INSTALL_PREFIX
- if [ -n "$REMOTE_LOCAL_INSTALL" ]; then
- INSTALL_PREFIX="${MODULE_BUILD_DIR}/opt/openslx"
- else
- INSTALL_PREFIX="${MODULE_BUILD_DIR}"
- fi
+ local INSTALL_PREFIX="${MODULE_BUILD_DIR}"
make CONFIG_PREFIX="${INSTALL_PREFIX}" install || perror "failed"
rm -f "${INSTALL_PREFIX}/bin/mount" "${INSTALL_PREFIX}/bin/umount" "${INSTALL_PREFIX}/bin/bash"
}