Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcc-lib-path.m4 « config - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88c4023d01beef2af2bd964736e23a98a85a4a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_DEFUN([TL_AC_GNU_MAKE_GCC_LIB_PATH],
[
if test x"$SET_GCC_LIB_PATH_CMD" != x; then
  # SET_GCC_LIB_PATH_CMD is "XXX=path; export XXX;". It is expanded to
  #
  #	eval "set_gcc_lib_path=XXX=path; export XXX;"
  #
  eval "set_gcc_lib_path=$SET_GCC_LIB_PATH_CMD"
  # It will set set_gcc_lib_path to "export XXX=path" for GNU make.
  set_gcc_lib_path="export $set_gcc_lib_path"
else
  set_gcc_lib_path=
fi
AC_SUBST(set_gcc_lib_path)
])dnl