From: Peter Kjellerstedt Date: Fri, 5 Apr 2013 16:59:44 +0000 (+0200) Subject: oe-setup-builddir: Allow $OECORENOTESCONF to not exist X-Git-Tag: 2015-4~6918 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6fc14169ac0c3001e3a69eda8d07fc0ac93a15ee;p=openembedded-core.git oe-setup-builddir: Allow $OECORENOTESCONF to not exist Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index be5811d37c..591913f8bc 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir @@ -118,5 +118,5 @@ EOM if [ "x" = "x$OECORENOTESCONF" ]; then OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt" fi -cat $OECORENOTESCONF +[ ! -r "$OECORENOTESCONF" ] || cat $OECORENOTESCONF unset OECORENOTESCONF