(testing x_includes and x_libraries): Use =, not ==.

This commit is contained in:
Richard M. Stallman 1993-07-19 19:42:58 +00:00
parent 279271bab8
commit 7e39a592c3

View file

@ -1000,7 +1000,7 @@ esac
### If the user hasn't specified where we should find X, try
### letting autoconf figure that out.
if [ "0${x_includes}" == 0 ] && [ "0${x_libraries}" == 0 ]; then
if [ "0${x_includes}" = 0 ] && [ "0${x_libraries}" = 0 ]; then
]
AC_FIND_X
[