aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2018-10-26 15:11:31 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2018-10-26 15:11:31 +0000
commita98fb30ea66dde621d40db3c12d9463a37b78b87 (patch)
tree2001f4a23c2acafebcde55e14d59b5926c75a180
parentbca63175bce00e777d728c0cb9908d6d518b147f (diff)
spec2xxx-config: Fix typo in find command.
Change-Id: Id53546fd18e9b51f9d531f7f84ebb3ff363474d5
-rwxr-xr-xspec2xxx-config2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec2xxx-config b/spec2xxx-config
index 64944e5..586eb12 100755
--- a/spec2xxx-config
+++ b/spec2xxx-config
@@ -212,7 +212,7 @@ case "$mfpu:$hw_fpu" in
esac
if [ x"$sysroot" != x"" ]; then
- ldso="$(find "$sysroot/lib $sysroot/lib64" -name "ld-*.so")"
+ ldso="$(find "$sysroot/lib" "$sysroot/lib64" -name "ld-*.so")"
if [ "x$ldso" = "x" ]; then
echo "ERROR: Could not find ld-*.so under $sysroot/lib or $sysroot/lib64"
exit 1