diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-06-10 12:45:09 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-06-10 22:44:20 -0700 |
commit | 5615eaf26469f20c2d8c3be5770e12564a1edfff (patch) | |
tree | cf9eb7a5797cd7c9dd4680b0463859dcd8376328 /Makefile | |
parent | b68e08db76547937ea6e1902e87a5ea98c906f0c (diff) | |
download | glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.gz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.xz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.zip |
Quash some new warnings from GCC 4.6.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile index ea7a5b5e58..aac255713d 100644 --- a/Makefile +++ b/Makefile @@ -138,10 +138,16 @@ lib: $(common-objpfx)libc.so lib: $(common-objpfx)linkobj/libc.so -$(common-objpfx)linkobj/libc.so: $(elfobjdir)/soinit.os $(common-objpfx)linkobj/libc_pic.a $(elfobjdir)/sofini.os $(elfobjdir)/interp.os $(elfobjdir)/ld.so $(common-objpfx)shlib.lds $(common-objpfx)elf/ld.so +$(common-objpfx)linkobj/libc.so: $(elfobjdir)/soinit.os \ + $(common-objpfx)linkobj/libc_pic.a \ + $(elfobjdir)/sofini.os \ + $(elfobjdir)/interp.os \ + $(elfobjdir)/ld.so \ + $(common-objpfx)shlib.lds $(build-shlib) -$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a $(common-objpfx)sunrpc/librpc_compat_pic.a +$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a \ + $(common-objpfx)sunrpc/librpc_compat_pic.a $(..)./scripts/mkinstalldirs $(common-objpfx)linkobj (cd $(common-objpfx)linkobj; \ $(AR) x ../libc_pic.a; \ |