summaryrefslogtreecommitdiffstats
path: root/remote/tools/busybox
diff options
context:
space:
mode:
authorJonathan Bauer2013-03-14 14:03:38 +0100
committerJonathan Bauer2013-03-14 14:03:38 +0100
commit3b4bd57d84e5b083e43547858b0a8fdd5972ff29 (patch)
tree27716630d519b25165e792c106987f0fadcb5bfc /remote/tools/busybox
parentfix bad config for policykit (diff)
downloadtm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.tar.gz
tm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.tar.xz
tm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.zip
busybox: change TARGET_DIR to PREFIX
Diffstat (limited to 'remote/tools/busybox')
-rw-r--r--remote/tools/busybox/busybox.build2
-rw-r--r--remote/tools/busybox/busybox.conf8
2 files changed, 5 insertions, 5 deletions
diff --git a/remote/tools/busybox/busybox.build b/remote/tools/busybox/busybox.build
index da41e6e2..1a765532 100644
--- a/remote/tools/busybox/busybox.build
+++ b/remote/tools/busybox/busybox.build
@@ -16,7 +16,7 @@ build()
pinfo "Running make"
make -j5 || perror "failed."
pinfo "Running make install"
- make CONFIG_PREFIX="${TOOL_DIR}"/"${TOOL}"/build/"${TARGET_DIR}" install || perror "failed"
+ make CONFIG_PREFIX="${TOOL_DIR}"/"${TOOL}"/build/"${PREFIX}" install || perror "failed"
cd -
touch .built
fi
diff --git a/remote/tools/busybox/busybox.conf b/remote/tools/busybox/busybox.conf
index b0c1f886..f7c866f2 100644
--- a/remote/tools/busybox/busybox.conf
+++ b/remote/tools/busybox/busybox.conf
@@ -1,6 +1,6 @@
GIT=git://git.openslx.org/openslx/tools/busybox
-TARGET_DIR="openslx"
+PREFIX="/openslx"
REQUIRED_BINARIES=" busybox"
-REQUIRED_DIRECTORIES=" /$TARGET_DIR/bin
- /$TARGET_DIR/sbin
- /$TARGET_DIR/usr"
+REQUIRED_DIRECTORIES=" ${PREFIX}/bin
+ ${PREFIX}/sbin
+ ${PREFIX}/usr"