Magellan Linux

Diff of /smage/trunk/extras/rust/rust-1.19.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9608 by niro, Fri Jul 28 11:14:06 2017 UTC revision 9611 by niro, Fri Jul 28 11:56:49 2017 UTC
# Line 21  SDEPEND=">= sys-dev/llvm-4.0 Line 21  SDEPEND=">= sys-dev/llvm-4.0
21   >= dev-libs/libffi-3.2   >= dev-libs/libffi-3.2
22   >= dev-libs/jemalloc-5   >= dev-libs/jemalloc-5
23   >= net-misc/curl-7   >= net-misc/curl-7
24   >= net-misc/curl-dev-7"   >= net-misc/curl-dev-7
25     >= app-arch/xz-utils-5"
26    
27  if [[ ${BOOTSTRAP} = 0 ]]  if [[ ${BOOTSTRAP} = 0 ]]
28  then  then
# Line 87  src_compile() Line 88  src_compile()
88   local myconf   local myconf
89    
90   # enforce rust-bin chost   # enforce rust-bin chost
91   myconf+=" --host=${ARCH}-unknown-linux-gnu --build=${ARCH}-unknown-linux-gnu"   local myARCH
92     [[ ${ARCH} = i*86 ]] && myARCH=i686
93     myconf+=" --host=${myARCH}-unknown-linux-gnu --build=${myARCH}-unknown-linux-gnu"
94    
95   if [[ ${BOOTSTRAP} = 0 ]]   if [[ ${BOOTSTRAP} = 0 ]]
96   then   then

Legend:
Removed from v.9608  
changed lines
  Added in v.9611