Commit 7927b41b authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Make sure prefix is actually honoured by configure.

Temporary hack for redhat users to enable NPTL.
parent 0f9eeb6f
......@@ -152,6 +152,11 @@ function configure_wine_applications {
echo "WINE Installer v0.74"
echo
# check for redhat 9 so we can enable --with-nptl until runtime detection is complete
if cat /etc/redhat-release | grep Shrike &>/dev/null; then
CONFARGS="$CONFARGS --with-nptl"
fi
if [ "$BINDIST" = 'no' ]
then {
......@@ -227,7 +232,7 @@ then {
else {
echo "Running configure..."
echo
if ! ./configure -C $CONFARGS
if ! ./configure -C $CONFARGS --prefix=$prefix
then {
echo
echo "Configure failed, aborting install."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment