about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-03-12 02:45:42 -0700
committerbors <bors@rust-lang.org>2013-03-12 02:45:42 -0700
commit014620af902c4798ede78462b2d0e3b749fb2fff (patch)
treea513232e659a94fd178cd6808c5ae15ce4f32157
parentb5334c3095a024f934a91ba82bd88fe2696919d1 (diff)
parent1d315aac4403f22274fceab3e22ec1cdb95bad78 (diff)
downloadrust-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-xsrc/etc/local_stage0.sh1
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}/