diff options
Diffstat (limited to 'setdevenv')
-rwxr-xr-x | setdevenv | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |