Kaydet (Commit) 9cb3bd39 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

basename -a is non-standard

...and apparently not supported on some tinderboxes like tb70 and tb71

Change-Id: I37dae3e7bbb0b9324adf04819fa87fb6a5b9f1d0
üst 5d15bb58
...@@ -58,7 +58,7 @@ done ...@@ -58,7 +58,7 @@ done
files=$(find "${check_path}/program" "${check_path}/sdk/bin" -type f) files=$(find "${check_path}/program" "${check_path}/sdk/bin" -type f)
# all RPATHs should point to ${INSTDIR}/program so that's the files they find # all RPATHs should point to ${INSTDIR}/program so that's the files they find
programfiles=$(basename -a $(echo ${files} | grep -o '/program/[^/]* ')) programfiles=$(echo ${files} | grep -o '/program/[^/]* ' | xargs -n 1 basename)
# whitelists should contain only system libraries that have a good reputation # whitelists should contain only system libraries that have a good reputation
# of maintaining ABI stability # of maintaining ABI stability
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment