more local.conf rejigging

git-svn-id: https://svn.o-hand.com/repos/poky@6 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Matthew Allum 2005-08-31 12:44:02 +00:00
parent ceb71677cf
commit a716d99115
3 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Where to cache the files OE downloads
DL_DIR = "/usr/oe/sources"
BBFILES := "/usr/ohoe/openembedded/packages/*/*.bb"
DL_DIR = "POKYROOT/sources"
BBFILES := "POKYROOT/openembedded/packages/*/*.bb"
BBMASK = ""
PREFERRED_PROVIDERS = "virtual/qte:qte-for-opie virtual/libqpe:libqpe-opie"

View File

@ -1,3 +1,8 @@
# XXXX NOTE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#
# This file is not used, see build/conf/local.conf instead
#
# XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#
# OpenEmbedded local configuration file (sample)
#

View File

@ -24,9 +24,9 @@ if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then
exit 1
fi
if !(test -r $PKGDIR/conf/local.conf); then
if !(test -r $BUILDDIR/conf/local.conf); then
echo "Setting up initial '$PKGDIR/conf/local.conf'."
cat $PKGDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $PKGDIR/conf/local.conf
cat $BUILDDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $BUILDDIR/conf/local.conf
fi
BBPATH=$BBDIR