mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
Silence error on non-redhat systems.
This commit is contained in:
parent
ac0416ad96
commit
ce05da50b0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue