diff options
author | Rob Kendrick <rob.kendrick@codethink.co.uk> | 2014-07-29 13:11:15 +0000 |
---|---|---|
committer | Rob Kendrick <rob.kendrick@codethink.co.uk> | 2014-07-29 13:11:15 +0000 |
commit | 7ff6a32b5beb7079f9b5a1029228279ed4dbc611 (patch) | |
tree | 48b73cbdcc5a276bb21aa48b25a42381ce09ca39 | |
parent | 988a4dbb2490f5b6a86fbc2a131bbfe1dd0cb5ab (diff) | |
download | eglibc2-baserock/robkendrick/mips64.tar.gz |
Make sure /lib64/ld.so.1 existsbaserock/robkendrick/mips64
-rw-r--r-- | stage2-eglibc.morph | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/stage2-eglibc.morph b/stage2-eglibc.morph index 6bde598cf..7c73b6dff 100644 --- a/stage2-eglibc.morph +++ b/stage2-eglibc.morph @@ -52,6 +52,12 @@ install-commands: install -d "$DESTDIR/lib64" ln -s "$PREFIX/lib/ld64.so.1" \ "$DESTDIR/lib64/ld64.so.1" ;; + + mips64) + install -d "$DESTDIR/lib64" + ln -s "$PREFIX/lib/ld.so.1" \ + "$DESTDIR/lib64/ld.so.1" ;; + *) loader=$(basename $(ls "$DESTDIR$PREFIX"/lib/ld-linux*)) ln -s "$PREFIX/lib/$loader" "$DESTDIR/lib/$loader" |