summaryrefslogtreecommitdiffstats
path: root/scripts/oe-setup-builddir
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2013-04-05 18:59:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-05 23:05:34 +0100
commita468b0d5579148771da716eaf357e5d45fc3211c (patch)
treede0e61ac27dec7c4232ab0ff40010a0b9b651657 /scripts/oe-setup-builddir
parentf5835878166d0b302c85a29ef1944e6b72e61260 (diff)
downloadpoky-a468b0d5579148771da716eaf357e5d45fc3211c.tar.gz
oe-setup-builddir: Allow $OECORENOTESCONF to not exist
(From OE-Core rev: 6fc14169ac0c3001e3a69eda8d07fc0ac93a15ee) Signed-off-by: Peter Kjellerstedt <pkj@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-setup-builddir')
-rwxr-xr-xscripts/oe-setup-builddir2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir
index 76e17784d8..d5d8d980d3 100755
--- a/scripts/oe-setup-builddir
+++ b/scripts/oe-setup-builddir
@@ -118,5 +118,5 @@ EOM
118if [ "x" = "x$OECORENOTESCONF" ]; then 118if [ "x" = "x$OECORENOTESCONF" ]; then
119 OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt" 119 OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt"
120fi 120fi
121cat $OECORENOTESCONF 121[ ! -r "$OECORENOTESCONF" ] || cat $OECORENOTESCONF
122unset OECORENOTESCONF 122unset OECORENOTESCONF