Silence error on non-redhat systems.

This commit is contained in:
Mike Hearn 2003-05-16 20:13:16 +00:00 committed by Alexandre Julliard
parent ac0416ad96
commit ce05da50b0
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ echo "WINE Installer v0.74"
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
if [ -e /etc/redhat-release ] && grep Shrike /etc/redhat-release &>/dev/null; then
CONFARGS="$CONFARGS --with-nptl"
fi