(testing x_includes and x_libraries): Use =, not ==.
This commit is contained in:
parent
279271bab8
commit
7e39a592c3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
[
|
||||
|
|
Loading…
Add table
Reference in a new issue