Allow x_libraries and x_includes to be paths.
This commit is contained in:
parent
60439948f2
commit
00ac3ffc28
1 changed files with 3 additions and 3 deletions
|
@ -932,11 +932,11 @@ else
|
|||
fi
|
||||
|
||||
if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
|
||||
LD_SWITCH_X_SITE="-L${x_libraries}"
|
||||
LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
|
||||
LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
|
||||
LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
|
||||
fi
|
||||
if test "${x_includes}" != NONE && test -n "${x_includes}"; then
|
||||
C_SWITCH_X_SITE="-I${x_includes}"
|
||||
C_SWITCH_X_SITE=-I`echo ${x_libraries} | sed -e "s/:/ -I/g"`
|
||||
fi
|
||||
|
||||
if test x"${x_includes}" = x; then
|
||||
|
|
Loading…
Add table
Reference in a new issue