diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-26 22:10:51 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-26 22:10:51 +0000 |
commit | c9d71a8d46f0ac46c242e03b063a04c0c9bb4e7a (patch) | |
tree | ad8bc4c44fe1caaa111c4640a98f68577cad75ec /newlib/libc/Makefile.am | |
parent | 4aa1b05777e410c28f4cf2a6036696a2afab71a5 (diff) | |
download | newlib-c9d71a8d46f0ac46c242e03b063a04c0c9bb4e7a.zip newlib-c9d71a8d46f0ac46c242e03b063a04c0c9bb4e7a.tar.gz newlib-c9d71a8d46f0ac46c242e03b063a04c0c9bb4e7a.tar.bz2 |
2005-10-26 Jeff Johnston <jjohnstn@redhat.com>
* libc/Makefile.am: Reorder SUBLIBS so machine and sys
directories can override properly.
Diffstat (limited to 'newlib/libc/Makefile.am')
-rw-r--r-- | newlib/libc/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libc/Makefile.am b/newlib/libc/Makefile.am index 8fd0581..feba1b1 100644 --- a/newlib/libc/Makefile.am +++ b/newlib/libc/Makefile.am @@ -50,15 +50,15 @@ SUBLIBS = \ $(LIBC_SIGNAL_LIB) \ time/libtime.$(aext) \ locale/liblocale.$(aext) \ - $(LIBC_SYS_LIB) \ reent/libreent.$(aext) \ $(LIBC_EXTRA_LIB) \ errno/liberrno.$(aext) \ misc/libmisc.$(aext) \ - $(LIBC_MACHINE_LIB) \ $(LIBC_UNIX_LIB) \ $(LIBC_POSIX_LIB) \ - $(LIBC_SYSCALL_LIB) + $(LIBC_SYSCALL_LIB) \ + $(LIBC_MACHINE_LIB) \ + $(LIBC_SYS_LIB) else noinst_LIBRARIES = libc.a SUBLIBS = \ @@ -72,16 +72,16 @@ SUBLIBS = \ $(LIBC_SIGNAL_LIB) \ time/lib.$(aext) \ locale/lib.$(aext) \ - $(LIBC_SYS_LIB) \ reent/lib.$(aext) \ $(LIBC_EXTRA_LIB) \ errno/lib.$(aext) \ misc/lib.$(aext) \ - $(LIBC_MACHINE_LIB) \ $(LIBC_UNIX_LIB) \ $(LIBC_POSIX_LIB) \ $(LIBC_SYSCALL_LIB) \ - $(NEWLIB_ICONV_LIBS) + $(NEWLIB_ICONV_LIBS) \ + $(LIBC_MACHINE_LIB) \ + $(LIBC_SYS_LIB) endif libc_la_LDFLAGS = -Xcompiler -nostdlib |