diff options
author | Seunghwan Lee <sh.cat.lee@samsung.com> | 2017-01-03 13:10:38 +0900 |
---|---|---|
committer | Seunghwan Lee <sh.cat.lee@samsung.com> | 2017-01-03 13:32:17 +0900 |
commit | 2667bea9ede8627e49d2fcba05641bcedfeccb44 (patch) | |
tree | 4268e1f7c7ed2ef41b350407ae6046ce22ce5992 /script | |
parent | 88ea615095cd255f79a76ef0cbaa0fc23c5f5592 (diff) | |
download | rootstrap-2667bea9ede8627e49d2fcba05641bcedfeccb44.tar.gz rootstrap-2667bea9ede8627e49d2fcba05641bcedfeccb44.tar.bz2 rootstrap-2667bea9ede8627e49d2fcba05641bcedfeccb44.zip |
postlinker : change dir from dest to dest/usr/lib
Change-Id: I54e44094072b106dabb2397af8420b23416c7e0a
Signed-off-by: Seunghwan Lee <sh.cat.lee@samsung.com>
Diffstat (limited to 'script')
-rwxr-xr-x | script/convert64.sh | 1 | ||||
-rwxr-xr-x | script/rootstrap_gen_1.0.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/script/convert64.sh b/script/convert64.sh index c0b6e94..482ee66 100755 --- a/script/convert64.sh +++ b/script/convert64.sh @@ -31,3 +31,4 @@ sed -i "s/asm-x86/asm-ia64/g" make_rootstrap.sh git checkout ./script/rootstrap_gen_1.0.sh POSTLINKER_PATH=${PWD_BACKUP}"/script/postlinker" sed -i "s@POSTLINKER_PATH=.*postlinker.*\$@POSTLINKER_PATH=\$\{PWD_BACKUP\}/script/postlinker_64@" ./script/rootstrap_gen_1.0.sh +sed -i "s@/usr/lib@/usr/lib64@" ./script/rootstrap_gen_1.0.sh diff --git a/script/rootstrap_gen_1.0.sh b/script/rootstrap_gen_1.0.sh index 9f593aa..1a6eeb3 100755 --- a/script/rootstrap_gen_1.0.sh +++ b/script/rootstrap_gen_1.0.sh @@ -429,7 +429,7 @@ done #finish copy header & library ################################################################## log "************* Post link *******************" log "# POSTLINKER_PATH=$POSTLINKER_PATH" -for i in $(find ${DEST} -name "*.so") +for i in $(find ${DEST}/usr/lib -name "*.so") do ${POSTLINKER_PATH} $i >/dev/null 1>&2 done |