From 4d376c5bc2f27b87686b5fcd69a3764d2fb56c4a Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Sat, 7 Jun 2003 00:35:19 +0000 Subject: [PATCH] Check for /lib/tls directory for Red Hat 9. --- tools/wineinstall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/wineinstall b/tools/wineinstall index ba8245dd522..374decdef60 100755 --- a/tools/wineinstall +++ b/tools/wineinstall @@ -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