Check for /lib/tls directory for Red Hat 9.
authorMike Hearn <mike@theoretic.com>
Sat, 7 Jun 2003 00:35:19 +0000 (00:35 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Sat, 7 Jun 2003 00:35:19 +0000 (00:35 +0000)
tools/wineinstall

index ba8245d..374decd 100755 (executable)
@@ -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