diff options
| author | bors <bors@rust-lang.org> | 2013-03-12 02:45:42 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-03-12 02:45:42 -0700 |
| commit | 014620af902c4798ede78462b2d0e3b749fb2fff (patch) | |
| tree | a513232e659a94fd178cd6808c5ae15ce4f32157 | |
| parent | b5334c3095a024f934a91ba82bd88fe2696919d1 (diff) | |
| parent | 1d315aac4403f22274fceab3e22ec1cdb95bad78 (diff) | |
| download | rust-014620af902c4798ede78462b2d0e3b749fb2fff.tar.gz rust-014620af902c4798ede78462b2d0e3b749fb2fff.zip | |
auto merge of #5335 : larryv/rust/local_stage0-libsyntax, r=luqmana
The `local_stage0.sh` script was not updated after commit 7dcbaed renamed librustsyntax to libsyntax. Currently, `./configure --enable-local-rust --local-rust-root=FOO && make` will fail due to the missing libsyntax; this change corrects this.
| -rwxr-xr-x | src/etc/local_stage0.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/etc/local_stage0.sh b/src/etc/local_stage0.sh index e4d7b61c4a3..5898bc561aa 100755 --- a/src/etc/local_stage0.sh +++ b/src/etc/local_stage0.sh @@ -46,3 +46,4 @@ cp ${PREFIX}/lib/rustc/${TARG_DIR}/${LIBDIR}/* ${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}/ |
