Commit 4d376c5b authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Check for /lib/tls directory for Red Hat 9.

parent cb98365c
......@@ -152,8 +152,8 @@ 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 [ -e /etc/redhat-release ] && grep Shrike /etc/redhat-release &>/dev/null; then
# check for redhat 9 with tls libs so we can enable --with-nptl until runtime detection is complete
if [ -e /etc/redhat-release ] && grep "Shrike" /etc/redhat-release &>/dev/null && [ -e /lib/tls ]; then
CONFARGS="$CONFARGS --with-nptl"
fi
......
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