diff options
| author | Karl Heuer | 1995-05-29 19:52:41 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-29 19:52:41 +0000 |
| commit | 00ac3ffc285d78d647fae5666c9180a430ddbb0a (patch) | |
| tree | 908be08e03a006dca924391a1c52022421bfe2ed | |
| parent | 60439948f2a3b50b527a9457a6e05eb0d94cf56a (diff) | |
| download | emacs-00ac3ffc285d78d647fae5666c9180a430ddbb0a.tar.gz emacs-00ac3ffc285d78d647fae5666c9180a430ddbb0a.zip | |
Allow x_libraries and x_includes to be paths.
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 7f20db0eae3..f430b992e8a 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -932,11 +932,11 @@ else | |||
| 932 | fi | 932 | fi |
| 933 | 933 | ||
| 934 | if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then | 934 | if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then |
| 935 | LD_SWITCH_X_SITE="-L${x_libraries}" | 935 | LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` |
| 936 | LD_SWITCH_X_SITE_AUX="-R${x_libraries}" | 936 | LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` |
| 937 | fi | 937 | fi |
| 938 | if test "${x_includes}" != NONE && test -n "${x_includes}"; then | 938 | if test "${x_includes}" != NONE && test -n "${x_includes}"; then |
| 939 | C_SWITCH_X_SITE="-I${x_includes}" | 939 | C_SWITCH_X_SITE=-I`echo ${x_libraries} | sed -e "s/:/ -I/g"` |
| 940 | fi | 940 | fi |
| 941 | 941 | ||
| 942 | if test x"${x_includes}" = x; then | 942 | if test x"${x_includes}" = x; then |