]> code.ossystems Code Review - openembedded-core.git/commitdiff
build/conf: move sample conf files to meta/conf
authorJoshua Lock <josh@linux.intel.com>
Tue, 17 Aug 2010 16:34:59 +0000 (17:34 +0100)
committerJoshua Lock <josh@linux.intel.com>
Tue, 17 Aug 2010 16:41:20 +0000 (17:41 +0100)
Currently rm -fr build breaks things badly but will work if we move the sample
configuration files to meta/conf - this patch does so.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
meta/conf/bblayers.conf.sample [moved from build/conf/bblayers.conf.sample with 100% similarity]
meta/conf/local.conf.sample [moved from build/conf/local.conf.sample with 100% similarity]
meta/conf/site.conf.sample [moved from build/conf/site.conf.sample with 100% similarity]
scripts/poky-env-internal

index 3279fb0beaa5c1b77c0586811448f8eca047f9a4..e8d8f2b037b9cf40c59fe8f8ad588c490e8cd96f 100755 (executable)
@@ -59,7 +59,7 @@ if ! (test -d "$BITBAKEDIR" && test -d "$BUILDDIR"); then
 fi
 
 if [ "x" = "x$POKYLOCALCONF" ]; then
-    POKYLOCALCONF="$OEROOT/build/conf/local.conf.sample"
+    POKYLOCALCONF="$OEROOT/meta/conf/local.conf.sample"
 fi
 if ! (test -r "$BUILDDIR/conf/local.conf"); then
     echo "You had no conf/local.conf file. Poky has created this configuration file for you"
@@ -73,7 +73,7 @@ if ! (test -r "$BUILDDIR/conf/local.conf"); then
 fi
 
 if [ "x" = "x$POKYLAYERCONF" ]; then
-    POKYLAYERCONF="$OEROOT/build/conf/bblayers.conf.sample"
+    POKYLAYERCONF="$OEROOT/meta/conf/bblayers.conf.sample"
 fi
 if ! (test -r "$BUILDDIR/conf/bblayers.conf"); then
     echo "You had no conf/bblayers.conf file. Poky has created this configuration file for you"