diff options
| author | Jonathan Bauer | 2013-03-14 14:03:38 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2013-03-14 14:03:38 +0100 |
| commit | 3b4bd57d84e5b083e43547858b0a8fdd5972ff29 (patch) | |
| tree | 27716630d519b25165e792c106987f0fadcb5bfc | |
| parent | fix bad config for policykit (diff) | |
| download | tm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.tar.gz tm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.tar.xz tm-scripts-3b4bd57d84e5b083e43547858b0a8fdd5972ff29.zip | |
busybox: change TARGET_DIR to PREFIX
| -rw-r--r-- | remote/tools/busybox/busybox.build | 2 | ||||
| -rw-r--r-- | remote/tools/busybox/busybox.conf | 8 |
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" |
