auto merge of #7200 : yichoi/rust/fix_je_mac_cross, r=brson

while cross-compiling, ar in cross toolchains are required. 
linux is not sensitive so could not see errors.
This commit is contained in:
bors 2013-06-21 04:10:53 -07:00
commit 45f588e8fd
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,7 @@ vpath % .
SHELL := /bin/sh
CC := @CC@
AR := @AR@
# Configuration parameters.
DESTDIR =

View file

@ -4453,7 +4453,7 @@ PIC_CFLAGS='-fPIC -DPIC'
CTARGET='-o $@'
LDTARGET='-o $@'
EXTRA_LDFLAGS=
MKLIB='ar crus $@'
MKLIB='$(AR) crus $@'
CC_MM=1
default_munmap="1"