diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-05-28 23:49:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-05-28 23:49:13 +0000 |
commit | 487570f387634dd596690cd2876051c1a636c159 (patch) | |
tree | fc7b25905517a6f5fa71aa7b336548180eb2769c /scripts/deptest.sh | |
parent | 553c95028777e8221896435559bb4ed278329b30 (diff) | |
download | upstream-487570f387634dd596690cd2876051c1a636c159.tar.gz upstream-487570f387634dd596690cd2876051c1a636c159.tar.bz2 upstream-487570f387634dd596690cd2876051c1a636c159.zip |
deptest: use a separate build dir for host packages to prevent hardcoded path screwups
SVN-Revision: 16162
Diffstat (limited to 'scripts/deptest.sh')
-rwxr-xr-x | scripts/deptest.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/deptest.sh b/scripts/deptest.sh index 4f5869c07d..97d9aa2ba2 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 \ |