]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oe-find-native-sysroot: drop message if pseudo is not found paule/oe-run-native-fixes
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Tue, 17 Jul 2018 08:38:03 +0000 (10:38 +0200)
committerPaul Eggleton <paul.eggleton@linux.intel.com>
Tue, 17 Jul 2018 12:33:32 +0000 (14:33 +0200)
pseudo won't always be in the native sysroot for a recipe, so we
shouldn't be complaining if it isn't there.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
scripts/oe-find-native-sysroot

index 350ea21373aa0dc981e55f886ec6be851248b128..cc146b3fdbcdec9ec098b2ec991c650bae472c3e 100755 (executable)
@@ -110,6 +110,4 @@ pseudo="$OECORE_NATIVE_SYSROOT/usr/bin/pseudo"
 if [ -e "$pseudo" ]; then
     echo "PSEUDO=$pseudo"
     PSEUDO="$pseudo"
-else
-    echo "PSEUDO $pseudo is not found."
 fi