campo-sirio/curlpp/cross-configure.sh
bonazzi 4bcb3807c3 Aggiornato curl
Aggiunto curlpp

git-svn-id: svn://10.65.10.50/branches/R_10_00@24148 c028cbd2-c16b-5b4b-a496-9718f37d4682
2017-10-23 22:22:45 +00:00

16 lines
337 B
Bash

#!/bin/sh
CONFIG_SHELL=/bin/sh
export CONFIG_SHELL
PREFIX=/usr/i586-mingw32msvc
TARGET=i586-mingw32msvc
PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
export PATH
cache=cross-config.cache
sh configure --cache-file="$cache" --prefix=$PREFIX \
--target=$TARGET --host=$TARGET --build=i386-linux \
$*
status=$?
rm -f "$cache"
exit $status