| Index: ports/ruby/build.sh
|
| diff --git a/ports/ruby/build.sh b/ports/ruby/build.sh
|
| index 10a01f3e7f7e76c4f9d63077d3aaac21ca0b5f71..16740d3d8548d49b32aafa1714c01f1b560d1fbd 100644
|
| --- a/ports/ruby/build.sh
|
| +++ b/ports/ruby/build.sh
|
| @@ -32,18 +32,10 @@ ConfigureStep() {
|
| EXTRA_CONFIGURE_ARGS+=" --with-out-ext=openssl,digest/*"
|
| fi
|
|
|
| - local conf_host=${NACL_CROSS_PREFIX}
|
| - if [ ${NACL_ARCH} = "pnacl" ]; then
|
| - # The PNaCl tools use "pnacl-" as the prefix, but config.sub
|
| - # does not know about "pnacl". It only knows about "le32-nacl".
|
| - # Unfortunately, most of the config.subs here are so old that
|
| - # it doesn't know about that "le32" either. So we just say "nacl".
|
| - conf_host="nacl"
|
| - fi
|
| -
|
| SetupCrossEnvironment
|
| LogExecute ${SRC_DIR}/configure \
|
| - --host=${conf_host} \
|
| + --host=${CONF_HOST} \
|
| + --build=${CONF_BUILD} \
|
| --prefix=/ \
|
| --with-baseruby=${HOST_BUILD}/inst/bin/ruby \
|
| --with-http=no \
|
|
|