diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-02-12 20:28:26 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-02-18 21:25:32 -0500 |
commit | 416792d59a660d45cbfe822392bc9be0bf9da966 (patch) | |
tree | a49bedce8a1dd33395bd83650b7336213ae79154 /newlib/libc/locale | |
parent | 56c65fb8d9c470c3a0a2ea43d353f3e961d0161e (diff) | |
download | newlib-416792d59a660d45cbfe822392bc9be0bf9da966.zip newlib-416792d59a660d45cbfe822392bc9be0bf9da966.tar.gz newlib-416792d59a660d45cbfe822392bc9be0bf9da966.tar.bz2 |
newlib: libc: delete crt0.o duplication
The crt0.o was handled in a subdir-by-subdir basis: it would be compiled
in one (e.g. libc/sys/$arch/), then copied up one level (libc/sys/), then
copied up another (libc/) before finally being copied & installed in the
top newlib dir. The libc/sys/ copy was cleaned up, and then the top dir
was changed to copy it directly out of the libc/sys/$arch/ dir. But the
libc/sys/ copy to libc/ was left behind. Clean that up now too.
Diffstat (limited to 'newlib/libc/locale')
-rw-r--r-- | newlib/libc/locale/Makefile.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/newlib/libc/locale/Makefile.in b/newlib/libc/locale/Makefile.in index 7b5d5ef..2fb233e 100644 --- a/newlib/libc/locale/Makefile.in +++ b/newlib/libc/locale/Makefile.in @@ -196,7 +196,6 @@ CCASFLAGS = @CCASFLAGS@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ -CRT0 = @CRT0@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ ECHO_C = @ECHO_C@ |