summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetdevenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/setdevenv b/setdevenv
index decbf6a30..909068158 100755
--- a/setdevenv
+++ b/setdevenv
@@ -24,7 +24,7 @@ if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then
exit 1
fi
-if !(test -r $BUILDDIR/conf/local.conf); then
+if ! (test -r $BUILDDIR/conf/local.conf); then
echo "Setting up initial '$PKGDIR/conf/local.conf'."
cat $BUILDDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $BUILDDIR/conf/local.conf
fi