diff options
| author | Kenichi Handa | 2001-01-13 07:10:58 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-01-13 07:10:58 +0000 |
| commit | c8d4d4ccd1e2766775f66d5e05e78d96487f8449 (patch) | |
| tree | c7efc61c083c143dabccef58da02a3a07736dece | |
| parent | 8edb0a6fb70af8aa228ec8f526245982114dfbb9 (diff) | |
| download | emacs-c8d4d4ccd1e2766775f66d5e05e78d96487f8449.tar.gz emacs-c8d4d4ccd1e2766775f66d5e05e78d96487f8449.zip | |
Fix typo in the code setting x_search_path.
| -rw-r--r-- | configure.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 932a1fbf7be..c8e0af02663 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -1435,10 +1435,13 @@ if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then | |||
| 1435 | LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` | 1435 | LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` |
| 1436 | x_default_search_path="" | 1436 | x_default_search_path="" |
| 1437 | for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do | 1437 | for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do |
| 1438 | x_search_path="${x_library}/X11/%L/%T/%N%C%S:\ | 1438 | x_search_path="\ |
| 1439 | ${x_library}/X11/%L/%T/%N%C%S:${x_libary}/X11/%l/%T/%N%C%S:\ | 1439 | ${x_library}/X11/%L/%T/%N%C%S:\ |
| 1440 | ${x_library}/X11/%T/%N%C%S:${x_library}/X11/%L/%T/%N%S:\ | 1440 | ${x_library}/X11/%l/%T/%N%C%S:\ |
| 1441 | ${x_library}/X11/%l/%T/%N%S:${x_library}/X11/%T/%N%S" | 1441 | ${x_library}/X11/%T/%N%C%S:\ |
| 1442 | ${x_library}/X11/%L/%T/%N%S:\ | ||
| 1443 | ${x_library}/X11/%l/%T/%N%S:\ | ||
| 1444 | ${x_library}/X11/%T/%N%S" | ||
| 1442 | if test x"${x_default_search_path}" = x; then | 1445 | if test x"${x_default_search_path}" = x; then |
| 1443 | x_default_search_path=${x_search_path} | 1446 | x_default_search_path=${x_search_path} |
| 1444 | else | 1447 | else |