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.
This commit is contained in:
parent
5420733ef3
commit
6d8c4e4ba1
|
@ -585,6 +585,7 @@ ac_unique_file="libnosys"
|
||||||
enable_option_checking=no
|
enable_option_checking=no
|
||||||
ac_subst_vars='LTLIBOBJS
|
ac_subst_vars='LTLIBOBJS
|
||||||
LIBOBJS
|
LIBOBJS
|
||||||
|
target_makefile_frag_path
|
||||||
host_makefile_frag_path
|
host_makefile_frag_path
|
||||||
CCASFLAGS
|
CCASFLAGS
|
||||||
CCAS
|
CCAS
|
||||||
|
@ -681,7 +682,8 @@ PACKAGE_TARNAME
|
||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL'
|
SHELL'
|
||||||
ac_subst_files='host_makefile_frag'
|
ac_subst_files='host_makefile_frag
|
||||||
|
target_makefile_frag'
|
||||||
ac_user_opts='
|
ac_user_opts='
|
||||||
enable_option_checking
|
enable_option_checking
|
||||||
enable_silent_rules
|
enable_silent_rules
|
||||||
|
@ -3335,10 +3337,14 @@ test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
|
||||||
|
|
||||||
|
|
||||||
host_makefile_frag=${srcdir}/config/default.mh
|
host_makefile_frag=${srcdir}/config/default.mh
|
||||||
|
target_makefile_frag=${srcdir}/config/default.mt
|
||||||
|
|
||||||
host_makefile_frag_path=$host_makefile_frag
|
host_makefile_frag_path=$host_makefile_frag
|
||||||
|
|
||||||
|
|
||||||
|
target_makefile_frag_path=$target_makefile_frag
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test "${multilib}" = "yes"; then
|
if test "${multilib}" = "yes"; then
|
||||||
multilib_arg="--enable-multilib"
|
multilib_arg="--enable-multilib"
|
||||||
|
|
|
@ -199,6 +199,7 @@ AC_PROG_RANLIB
|
||||||
LIB_AM_PROG_AS
|
LIB_AM_PROG_AS
|
||||||
|
|
||||||
host_makefile_frag=${srcdir}/config/default.mh
|
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 We have to assign the same value to other variables because autoconf
|
||||||
dnl doesn't provide a mechanism to substitute a replacement keyword with
|
dnl doesn't provide a mechanism to substitute a replacement keyword with
|
||||||
|
@ -207,6 +208,9 @@ dnl
|
||||||
host_makefile_frag_path=$host_makefile_frag
|
host_makefile_frag_path=$host_makefile_frag
|
||||||
AC_SUBST(host_makefile_frag_path)
|
AC_SUBST(host_makefile_frag_path)
|
||||||
AC_SUBST_FILE(host_makefile_frag)
|
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
|
if test "${multilib}" = "yes"; then
|
||||||
multilib_arg="--enable-multilib"
|
multilib_arg="--enable-multilib"
|
||||||
|
|
Loading…
Reference in New Issue