diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 16:49:03 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 16:49:03 +0000 |
commit | 4f6f5dab9983c9224b74010119cad29efc286e53 (patch) | |
tree | 08d4726aaa9f92d6e6d5c0f0ee008d1a4e739ee0 /configure.in | |
parent | 4c56b88eb8adba0c267703867299d4bfa3a5573f (diff) | |
download | emacs-4f6f5dab9983c9224b74010119cad29efc286e53.tar.gz |
(bitmapdir): Allow for both "bitmaps" directories.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 956d5dc2ed6..ea62ad40ad8 100644 --- a/configure.in +++ b/configure.in @@ -1218,7 +1218,8 @@ else for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do if test -d "${bmd}/X11/bitmaps"; then bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps" - elif test -d "${bmd}/bitmaps"; then + fi + if test -d "${bmd}/bitmaps"; then bmd_acc="${bmd_acc}:${bmd}/bitmaps" fi done |