Make sure prefix is actually honoured by configure.
Temporary hack for redhat users to enable NPTL.
This commit is contained in:
parent
0f9eeb6f64
commit
7927b41b6c
|
@ -152,6 +152,11 @@ function configure_wine_applications {
|
||||||
echo "WINE Installer v0.74"
|
echo "WINE Installer v0.74"
|
||||||
echo
|
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' ]
|
if [ "$BINDIST" = 'no' ]
|
||||||
then {
|
then {
|
||||||
|
|
||||||
|
@ -227,7 +232,7 @@ then {
|
||||||
else {
|
else {
|
||||||
echo "Running configure..."
|
echo "Running configure..."
|
||||||
echo
|
echo
|
||||||
if ! ./configure -C $CONFARGS
|
if ! ./configure -C $CONFARGS --prefix=$prefix
|
||||||
then {
|
then {
|
||||||
echo
|
echo
|
||||||
echo "Configure failed, aborting install."
|
echo "Configure failed, aborting install."
|
||||||
|
|
Loading…
Reference in New Issue