aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-28 20:19:50 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-28 20:19:50 +0000
commit15218d47fd067ec3333ebdb84c9109aa09463f7c (patch)
tree5808f4cba9df8959caebe32ec4a01f2edbfca8f2 /scripts
parentf466228e14e2c4091a528ee1f0dd1c278c04581a (diff)
downloadopenembedded-core-contrib-15218d47fd067ec3333ebdb84c9109aa09463f7c.tar.gz
scripts/poky-autobuild: Further path fixes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4364 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-autobuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild
index 57943da5f2..1dd31e2a84 100755
--- a/scripts/poky-autobuild
+++ b/scripts/poky-autobuild
@@ -38,8 +38,8 @@ shift
POSTPROCESS=`which poky-autobuild-postprocess`
if [ "xcomplete" = "x$BBTARGET" ]; then
- touch ./build/tmp/deploy/images/images-complete
- chmod a+w ./build/tmp/deploy/images/images-complete
+ touch ./tmp/deploy/images/images-complete
+ chmod a+w ./tmp/deploy/images/images-complete
cd ..
if [ "x$POSTPROCESS" != "x" ]; then
$POSTPROCESS `pwd`
@@ -47,11 +47,11 @@ if [ "xcomplete" = "x$BBTARGET" ]; then
exit 0
fi
-CONFFILE="./build/conf/auto.conf"
+CONFFILE="./conf/auto.conf"
if [ ! -e "$CONFFILE" ]; then
- if [ ! -d "./build/conf" ]; then
- mkdir -p "./build/conf"
+ if [ ! -d "./conf" ]; then
+ mkdir -p "./conf"
fi
echo 'PACKAGE_CLASSES = "package_ipk package_deb"' > "$CONFFILE"
echo 'BB_NUMBER_THREADS = "6"' >> "$CONFFILE"