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 | ee2ddbe333818a1e46ca29701360e3fb9a85ca80 (patch) | |
tree | 9373947aeb66e29ccdd1f1b89d756bd036e25854 /configure.in | |
parent | 256fc8d87ca5d238e5aba21df6ab3e902810e317 (diff) | |
download | emacs-ee2ddbe333818a1e46ca29701360e3fb9a85ca80.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 |