summaryrefslogtreecommitdiffstats
path: root/scripts/deptest.sh
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-28 23:49:13 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-28 23:49:13 +0000
commit5c694a75e12128adf6603429e93cd220645d8f60 (patch)
tree9905fa726f5bd814d097a17fe18ce18f420404ea /scripts/deptest.sh
parent870ff6020cbbf82ee48adfd8d92e7156d1c57de6 (diff)
deptest: use a separate build dir for host packages to prevent hardcoded path screwups
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16162 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/deptest.sh')
-rwxr-xr-xscripts/deptest.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/deptest.sh b/scripts/deptest.sh
index 4f5869c07..97d9aa2ba 100755
--- a/scripts/deptest.sh
+++ b/scripts/deptest.sh
@@ -1,6 +1,7 @@
DIR="$PWD/tmp/deptest"
STAMP_DIR="$DIR/stamp"
BUILD_DIR="$DIR/build"
+BUILD_DIR_HOST="$DIR/build_host"
STAGING_DIR="$DIR/staging"
STAGING_DIR_HOST="$DIR/staging_host"
STAGING_DIR_HOST_TMPL="$DIR/staging_host_tmpl"
@@ -34,6 +35,7 @@ for pkg in `cat tmp/.packagedeps | grep CONFIG_PACKAGE | grep -v curdir | sed -
cp -al "$STAGING_DIR_HOST_TMPL" "$STAGING_DIR_HOST"
make package/$pkg/compile \
BUILD_DIR="$BUILD_DIR" \
+ BUILD_DIR_HOST="$BUILD_DIR_HOST" \
STAGING_DIR="$STAGING_DIR" \
STAGING_DIR_HOST="$STAGING_DIR_HOST" \
V=99 >"$LOG_DIR/$(basename $pkg).log" 2>&1 \