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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/gcc-lib-path.m4')
-rw-r--r--config/gcc-lib-path.m415
1 files changed, 0 insertions, 15 deletions
diff --git a/config/gcc-lib-path.m4 b/config/gcc-lib-path.m4
deleted file mode 100644
index 88c4023d0..000000000
--- a/config/gcc-lib-path.m4
+++ /dev/null
@@ -1,15 +0,0 @@
-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