summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-11-11 16:49:03 +0000
committerGerd Moellmann <gerd@gnu.org>1999-11-11 16:49:03 +0000
commit4f6f5dab9983c9224b74010119cad29efc286e53 (patch)
tree08d4726aaa9f92d6e6d5c0f0ee008d1a4e739ee0
parent4c56b88eb8adba0c267703867299d4bfa3a5573f (diff)
downloademacs-4f6f5dab9983c9224b74010119cad29efc286e53.tar.gz
(bitmapdir): Allow for both "bitmaps" directories.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 32beefa2934..9a5e1a7cd10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-11-11 Erik Naggum <erik@naggum.no>
+
+ * configure.in (bitmapdir): Allow for both "bitmaps" directories.
+
1999-11-08 Dave Love <fx@gnu.org>
* configure.in: Fix change for --with-pop default.
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