diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2018-07-17 14:34:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-24 11:52:26 +0100 |
commit | 2019f782604a554412cc2ceb0f46760a83984487 (patch) | |
tree | 27d1602a2f264556429074a8b26151d0cd023d5f /scripts | |
parent | 9c20b0df5f4b962d1a5212d3a2fe815fee8fee4e (diff) | |
download | poky-2019f782604a554412cc2ceb0f46760a83984487.tar.gz |
oe-find-native-sysroot: drop message if pseudo is not found
pseudo won't always be in the native sysroot for a recipe, so we
shouldn't be complaining if it isn't there.
(From OE-Core rev: 11efc94742088ec6fbf2a86000e98286b0b529ef)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-find-native-sysroot | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/oe-find-native-sysroot b/scripts/oe-find-native-sysroot index 350ea21373..cc146b3fdb 100755 --- a/scripts/oe-find-native-sysroot +++ b/scripts/oe-find-native-sysroot | |||
@@ -110,6 +110,4 @@ pseudo="$OECORE_NATIVE_SYSROOT/usr/bin/pseudo" | |||
110 | if [ -e "$pseudo" ]; then | 110 | if [ -e "$pseudo" ]; then |
111 | echo "PSEUDO=$pseudo" | 111 | echo "PSEUDO=$pseudo" |
112 | PSEUDO="$pseudo" | 112 | PSEUDO="$pseudo" |
113 | else | ||
114 | echo "PSEUDO $pseudo is not found." | ||
115 | fi | 113 | fi |