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

This commit is contained in:
Mike Hearn 2003-06-07 00:35:19 +00:00 committed by Alexandre Julliard
parent cb98365c75
commit 4d376c5bc2
1 changed files with 2 additions and 2 deletions

View File

@ -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