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:
authorMike Frysinger <vapier@gentoo.org>2022-01-24 08:23:10 +0300
committerMike Frysinger <vapier@gentoo.org>2022-01-26 05:56:47 +0300
commit6d8c4e4ba13861cac3ba5749c2aabcbb7996ee49 (patch)
tree28980eee782f7f8f5fb8ab31fdbe98fb870fb381 /libgloss/configure.ac
parent5420733ef33819384737a3ef09926253502d4d66 (diff)
libgloss: define default target_makefile_frag in top-level
A bunch of subdirs want this, so make it available in the common dir to ease future merges. It isn't used directly in libgloss so it should be harmless as-is.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index 9cbbf58cc..89274fede 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -199,6 +199,7 @@ AC_PROG_RANLIB
LIB_AM_PROG_AS
host_makefile_frag=${srcdir}/config/default.mh
+target_makefile_frag=${srcdir}/config/default.mt
dnl We have to assign the same value to other variables because autoconf
dnl doesn't provide a mechanism to substitute a replacement keyword with
@@ -207,6 +208,9 @@ dnl
host_makefile_frag_path=$host_makefile_frag
AC_SUBST(host_makefile_frag_path)
AC_SUBST_FILE(host_makefile_frag)
+target_makefile_frag_path=$target_makefile_frag
+AC_SUBST(target_makefile_frag_path)
+AC_SUBST_FILE(target_makefile_frag)
if test "${multilib}" = "yes"; then
multilib_arg="--enable-multilib"