aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-29 19:52:41 +0000
committerKarl Heuer1995-05-29 19:52:41 +0000
commit00ac3ffc285d78d647fae5666c9180a430ddbb0a (patch)
tree908be08e03a006dca924391a1c52022421bfe2ed
parent60439948f2a3b50b527a9457a6e05eb0d94cf56a (diff)
downloademacs-00ac3ffc285d78d647fae5666c9180a430ddbb0a.tar.gz
emacs-00ac3ffc285d78d647fae5666c9180a430ddbb0a.zip
Allow x_libraries and x_includes to be paths.
-rw-r--r--configure.in6
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
932fi 932fi
933 933
934if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then 934if 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"`
937fi 937fi
938if test "${x_includes}" != NONE && test -n "${x_includes}"; then 938if 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"`
940fi 940fi
941 941
942if test x"${x_includes}" = x; then 942if test x"${x_includes}" = x; then