Kaydet (Commit) e9c6338f authored tarafından Peter Foley's avatar Peter Foley

Do not add empty path to SOLARINC on windows

Change-Id: I6c53e999b9921dff4338815a48b8c97b4fe25059
üst e8e06877
...@@ -8876,9 +8876,11 @@ if test -n "$ENABLE_DIRECTX" -a "$_os" = "WINNT"; then ...@@ -8876,9 +8876,11 @@ if test -n "$ENABLE_DIRECTX" -a "$_os" = "WINNT"; then
else else
AC_MSG_RESULT([no, hoping the necessary headers and libraries will be found anyway]) AC_MSG_RESULT([no, hoping the necessary headers and libraries will be found anyway])
fi fi
PathFormat "$DIRECTXSDK_HOME" if test -n "$DIRECTXSDK_HOME"; then
DIRECTXSDK_HOME="$formatted_path" PathFormat "$DIRECTXSDK_HOME"
SOLARINC="$SOLARINC -I$DIRECTXSDK_HOME/include" DIRECTXSDK_HOME="$formatted_path"
SOLARINC="$SOLARINC -I$DIRECTXSDK_HOME/include"
fi
fi fi
AC_SUBST(DIRECTXSDK_HOME) AC_SUBST(DIRECTXSDK_HOME)
AC_SUBST(DIRECTXSDK_LIB) AC_SUBST(DIRECTXSDK_LIB)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment