diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2013-04-05 18:59:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-05 23:05:34 +0100 |
commit | a468b0d5579148771da716eaf357e5d45fc3211c (patch) | |
tree | de0e61ac27dec7c4232ab0ff40010a0b9b651657 /scripts/oe-setup-builddir | |
parent | f5835878166d0b302c85a29ef1944e6b72e61260 (diff) | |
download | poky-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-x | scripts/oe-setup-builddir | 2 |
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 | |||
118 | if [ "x" = "x$OECORENOTESCONF" ]; then | 118 | if [ "x" = "x$OECORENOTESCONF" ]; then |
119 | OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt" | 119 | OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt" |
120 | fi | 120 | fi |
121 | cat $OECORENOTESCONF | 121 | [ ! -r "$OECORENOTESCONF" ] || cat $OECORENOTESCONF |
122 | unset OECORENOTESCONF | 122 | unset OECORENOTESCONF |