Kaydet (Commit) 207c9a8f authored tarafından Michael Stahl's avatar Michael Stahl Kaydeden (comit) Norbert Thiebaud

check-elf-dynamic-objects: check sdk/bin too

It takes almost no time, but this way of doing it changes the
interpretation of the -d parameter; not sure how important that is.

Change-Id: I9d29cdf96d7006d5daea00bcc41e613fbd30aac8
Reviewed-on: https://gerrit.libreoffice.org/29707Reviewed-by: 's avatarNorbert Thiebaud <nthiebaud@gmail.com>
Tested-by: 's avatarNorbert Thiebaud <nthiebaud@gmail.com>
üst bc47854e
......@@ -13,7 +13,7 @@
set -euo pipefail
PARA=1
check_path="${INSTDIR:-.}/program"
check_path="${INSTDIR:-.}"
while [ "${1:-}" != "" ]; do
parm=${1%%=*}
......@@ -56,7 +56,7 @@ while [ "${1:-}" != "" ]; do
done
files=$(find "${check_path}" -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
programfiles=$(basename -a $(echo ${files} | grep -o '/program/[^/]* '))
......
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