]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/poky-autobuild: Further path fixes
authorRichard Purdie <richard@openedhand.com>
Mon, 28 Apr 2008 20:19:50 +0000 (20:19 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 28 Apr 2008 20:19:50 +0000 (20:19 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4364 311d38ba-8fff-0310-9ca6-ca027cbcb966

scripts/poky-autobuild

index 57943da5f2c699b877504896b16d077e2d602c0c..1dd31e2a84182f7ea2b7b30f93a1c860f61d20fe 100755 (executable)
@@ -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"