diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-19 19:42:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-19 19:42:58 +0000 |
commit | 715d36f189b3933d97dfad6440a7c5434e88adea (patch) | |
tree | 8ff51556963fc4183a3c7b6927cb968cbc38a654 /configure1.in | |
parent | 86b22faddfb2b3143e4d305a3e18c9d7b03c41f6 (diff) | |
download | emacs-715d36f189b3933d97dfad6440a7c5434e88adea.tar.gz |
(testing x_includes and x_libraries): Use =, not ==.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index b1446be3d92..99133eef74a 100755 --- a/configure1.in +++ b/configure1.in @@ -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 [ |