diff options
| author | Aljaž "g5pw" Srebrnič <a2piratesoft@gmail.com> | 2013-07-04 16:18:05 +0200 |
|---|---|---|
| committer | Aljaž "g5pw" Srebrnič <a2piratesoft@gmail.com> | 2013-07-04 16:18:05 +0200 |
| commit | e9ce97cc2a702679c81fa259f6dc5fca07d9cf20 (patch) | |
| tree | 4da86d65a47c4be65a61e3fd01d232db472a712d /src | |
| parent | e07e9bbf3698c7e1491129f58cb02858dde96337 (diff) | |
| download | rust-e9ce97cc2a702679c81fa259f6dc5fca07d9cf20.tar.gz rust-e9ce97cc2a702679c81fa259f6dc5fca07d9cf20.zip | |
Copy the correct libs when using local-rust-root
This fixes a segfault when configuring rust to use local-rust-root. The libraries were renamed in the 0.6-0.7 transition, and the script was not copying them all. I also removed the line referencing libcore (now libstd).
Diffstat (limited to 'src')
| -rwxr-xr-x | src/etc/local_stage0.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/local_stage0.sh b/src/etc/local_stage0.sh index 8d2fd887e3f..3b70f9b967f 100755 --- a/src/etc/local_stage0.sh +++ b/src/etc/local_stage0.sh @@ -43,7 +43,7 @@ fi cp ${PREFIX}/bin/rustc ${TARG_DIR}/stage0/bin/ cp ${PREFIX}/lib/rustc/${TARG_DIR}/${LIBDIR}/* ${TARG_DIR}/stage0/${LIBDIR}/ +cp ${PREFIX}/lib/libextra*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/ cp ${PREFIX}/lib/librust*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/ -cp ${PREFIX}/lib/libcore*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/ cp ${PREFIX}/lib/libstd*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/ cp ${PREFIX}/lib/libsyntax*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/ |
