Commit ce05da50 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Silence error on non-redhat systems.

parent ac0416ad
......@@ -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
......
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