diff options
author | David J. MacKenzie <djm@gnu.org> | 1994-10-29 12:43:53 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1994-10-29 12:43:53 +0000 |
commit | 8dbeb3537214a4377f1157ceae5738427f69f78e (patch) | |
tree | 11929b7d4c71dcdf87d1adc1bf1e5a07cdc2811e /configure.in | |
parent | 0ec5b01db42ba833501f60a60561d4c73e5425e9 (diff) | |
download | emacs-8dbeb3537214a4377f1157ceae5738427f69f78e.tar.gz |
change a stray [ to test
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 385953ffd3d..b5d9d1c5169 100644 --- a/configure.in +++ b/configure.in @@ -891,10 +891,10 @@ test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}" test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}" test "${x_includes}" != NONE && C_SWITCH_X_SITE="-I${x_includes}" -if [ x"${x_includes}" = x ]; then - bitmapdir=/usr/include/X11/bitmaps; +if test x"${x_includes}" = x; then + bitmapdir=/usr/include/X11/bitmaps else - bitmapdir="${x_includes}/bitmaps"; + bitmapdir="${x_includes}/bitmaps" fi case "${window_system}" in |