diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2012-05-10 14:52:03 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-10 15:57:25 -0700 |
commit | 510bbf14b4f25fec8ee3a2d24de3f24bdbf84333 (patch) | |
tree | a61b06b6e17f466341a2a136a1896221bc39b619 | |
parent | 5d5722e8ac22253bdc819da2d676d9900da0c533 (diff) | |
download | glibc-510bbf14b4f25fec8ee3a2d24de3f24bdbf84333.tar glibc-510bbf14b4f25fec8ee3a2d24de3f24bdbf84333.tar.gz glibc-510bbf14b4f25fec8ee3a2d24de3f24bdbf84333.tar.bz2 glibc-510bbf14b4f25fec8ee3a2d24de3f24bdbf84333.zip |
Hurd: Include RPC user stubs in linkobj/libc.so
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2012-05-10 Thomas Schwinge <thomas@schwinge.name> + + * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so): + Depend on against $(link-rpcuserlibs). + 2012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org> * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO] diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index 80749c2572..107eaafb05 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993-2004,2009,2011,2012 Free Software Foundation, Inc. +# Copyright (C) 1993-2012 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -133,6 +133,7 @@ rpcuserlibs := $(common-objpfx)mach/libmachuser.so \ $(common-objpfx)hurd/libhurduser.so link-rpcuserlibs := $(rpcuserlibs:%user.so=%user-link.so) $(common-objpfx)libc.so: $(link-rpcuserlibs) +$(common-objpfx)linkobj/libc.so: $(link-rpcuserlibs) rpath-dirs += mach hurd # Make sure the `lib' pass builds the dummy shared objects so |