diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-17 06:03:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-17 06:03:09 +0000 |
commit | fed43fabf19a217b8b888cc2d213ba177e5bfb28 (patch) | |
tree | 7e795ae3c06d3960b61f16f9f374083070550c88 /configure1.in | |
parent | 5fa2185f8229e99f058da4a7b4aa547bbc8f63c8 (diff) | |
download | emacs-fed43fabf19a217b8b888cc2d213ba177e5bfb28.tar.gz |
(bitmapdirs): Default to /usr/include/X11/bitmaps.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index 3cf4858e906..2201547e2a4 100755 --- a/configure1.in +++ b/configure1.in @@ -1336,7 +1336,11 @@ esac [ -n "${x_libraries}" ] && LD_SWITCH_X_SITE_AUX="-R${x_libraries}" [ -n "${x_includes}" ] && C_SWITCH_X_SITE="-I${x_includes}" -bitmapdir="${x_includes}" +if [ x"${x_includes}" = x ]; then + bitmapdir=/usr/include/X11/bitmaps; +else + bitmapdir="${x_includes}/bitmaps"; +fi # Avoid forcing the search of /usr/include before fixed include files. if [ "$C_SWITCH_X_SITE" = "-I/usr/include" ]; then |