Fixed silly problem when checking for Xpm and Motif 2.1. Thanks to Stuart Parmenter <pavlov@innerx.net> for pointing this out.

This commit is contained in:
cls%seawood.org 1998-10-27 23:51:16 +00:00
Родитель 1a32c74c9c
Коммит cba0478eaa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -442,7 +442,7 @@ LDFLAGS="$_SAVE_LDFLAGS"
res=`echo :$MOZ_FE | grep -c " x"`
if [ test $res != 0 ]; then
if [ test "$MOTIF_REQUIRES_XPM" = "True" && test "$MOTIF_VERSION" = "2.1" ]; then
if [ test "$MOTIF_REQUIRES_XPM" = "True" || test "$MOTIF_VERSION" = "2.1" ]; then
_SAVE_LDFLAGS="$LDFLAGS"
LDFLAGS="$XLDFLAGS $LDFLAGS"
if [ test "$MOTIF_REQUIRES_XPM" = "True" ]; then