diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-21 07:04:19 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-21 17:29:46 -0500 |
commit | dcb25665be227fb5a05497b7178a3d5df88050ec (patch) | |
tree | baf7212644be95aab2f08dd475d463df356b1f9b /newlib/libc/Makefile.am | |
parent | 8776d090f848b4ba752ba363db8fd0de1e578155 (diff) | |
download | newlib-dcb25665be227fb5a05497b7178a3d5df88050ec.zip newlib-dcb25665be227fb5a05497b7178a3d5df88050ec.tar.gz newlib-dcb25665be227fb5a05497b7178a3d5df88050ec.tar.bz2 |
newlib: punt unused LIBC_EXTRA_LIB settings
This was added decades ago, but the commit message lacks any
explanation, and it was unused when it was merged. It's still
unused today. So punt it all.
Diffstat (limited to 'newlib/libc/Makefile.am')
-rw-r--r-- | newlib/libc/Makefile.am | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/newlib/libc/Makefile.am b/newlib/libc/Makefile.am index d1540c8..cdeaf84 100644 --- a/newlib/libc/Makefile.am +++ b/newlib/libc/Makefile.am @@ -39,7 +39,7 @@ endif # The order of SUBDIRS is important for the integrated documentation. # Do not change the order without considering the doc impact. SUBDIRS = argz stdlib ctype search $(STDIO_SUBDIR) $(STDIO64_SUBDIR) string $(SIGNAL_SUBDIR) time locale sys reent \ - $(extra_dir) errno misc machine $(UNIX_SUBDIR) $(POSIX_SUBDIR) $(SYSCALLS_SUBDIR) $(NEWLIB_ICONV_DIRS) \ + errno misc machine $(UNIX_SUBDIR) $(POSIX_SUBDIR) $(SYSCALLS_SUBDIR) $(NEWLIB_ICONV_DIRS) \ $(XDR_SUBDIR) ssp . noinst_DATA = $(CRT0) @@ -59,7 +59,6 @@ SUBLIBS = \ time/libtime.$(aext) \ locale/liblocale.$(aext) \ reent/libreent.$(aext) \ - $(LIBC_EXTRA_LIB) \ errno/liberrno.$(aext) \ misc/libmisc.$(aext) \ ssp/libssp.$(aext) \ @@ -83,7 +82,6 @@ SUBLIBS = \ time/lib.$(aext) \ locale/lib.$(aext) \ reent/lib.$(aext) \ - $(LIBC_EXTRA_LIB) \ errno/lib.$(aext) \ misc/lib.$(aext) \ ssp/lib.$(aext) \ @@ -139,16 +137,15 @@ SUBDEFS = \ time/stmp-def \ locale/stmp-def \ reent/stmp-def \ - $(LIBC_EXTRA_DEF) \ misc/stmp-def # ditto for stmp-xml files in each subdirectory which builds .xml files SUBXMLS = $(SUBDEFS:stmp-def=stmp-xml) -libc.info: sigset.texi extra.texi stdio64.texi posix.texi iconvset.texi \ +libc.info: sigset.texi stdio64.texi posix.texi iconvset.texi \ targetdep.tex $(SUBDEFS) -libc.dvi: sigset.texi extra.texi stdio64.texi posix.texi iconvset.texi \ +libc.dvi: sigset.texi stdio64.texi posix.texi iconvset.texi \ targetdep.tex $(SUBDEFS) stmp-sigset: config.status @@ -173,17 +170,6 @@ stmp-iconvset: config.status iconvset.texi: stmp-iconvset ; @true -stmp-extra: config.status - if test -n "$(LIBC_EXTRA_LIB)"; then \ - echo "@set EXTRA" >tmp-extra.texi; \ - else \ - echo "@clear EXTRA" >tmp-extra.texi; \ - fi - $(SHELL) $(newlib_basedir)/../move-if-change tmp-extra.texi extra.texi - touch $@ - -extra.texi: stmp-extra ; @true - stmp-stdio64: config.status if test -n "$(LIBC_STDIO64_LIB)"; then \ echo "@set STDIO64" >tmp-stdio64.texi; \ @@ -224,7 +210,7 @@ $(SUBDEFS): stmp-targetdep ; @true TEXINFO_TEX = ../../texinfo/texinfo.tex info_TEXINFOS = libc.texi -libc_TEXINFOS = sigset.texi extra.texi posix.texi stdio64.texi iconvset.texi \ +libc_TEXINFOS = sigset.texi posix.texi stdio64.texi iconvset.texi \ targetdep.tex $(SUBDEFS) docbook-recursive: force @@ -248,9 +234,9 @@ install-man: man force: CLEANFILES = $(CRT0) \ - sigset.texi stmp-sigset extra.texi stmp-extra \ + sigset.texi stmp-sigset \ stdio64.texi stmp-stdio64 targetdep.tex stmp-targetdep \ - tmp-sigset.texi tmp-iconvset.texi tmp-extra.texi \ + tmp-sigset.texi tmp-iconvset.texi \ tmp-stdio64.texi tmp-posix.texi tmp-targetdep.texi \ *.xml *.3 |