diff options
author | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2011-07-22 12:51:53 +0000 |
---|---|---|
committer | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2011-07-22 12:51:53 +0000 |
commit | 1ad42678e8962a28b72b9e862c1360eee289ed26 (patch) | |
tree | 076cb582beb4ee28ce2c2bf03666d016336cceac /libc | |
parent | 9032e919a7ec52edf25516ddf3e3025722c6b683 (diff) | |
download | eglibc2-1ad42678e8962a28b72b9e862c1360eee289ed26.tar.gz |
2011-07-22 Denis Zaitceff <zaitceff@gmail.com>
* Makerules (others-pie): Involve this new variable into EGLIBC's
build system.
* nscd/Makefile: Ditto.
* option-groups.mak (others-pie-y): Add the variable.
git-svn-id: svn://svn.eglibc.org/trunk@14656 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc')
-rw-r--r-- | libc/ChangeLog.eglibc | 7 | ||||
-rw-r--r-- | libc/Makerules | 1 | ||||
-rw-r--r-- | libc/nscd/Makefile | 2 | ||||
-rw-r--r-- | libc/option-groups.mak | 1 |
4 files changed, 10 insertions, 1 deletions
diff --git a/libc/ChangeLog.eglibc b/libc/ChangeLog.eglibc index 670beedc7..810b5582b 100644 --- a/libc/ChangeLog.eglibc +++ b/libc/ChangeLog.eglibc @@ -1,3 +1,10 @@ +2011-07-22 Denis Zaitceff <zaitceff@gmail.com> + + * Makerules (others-pie): Involve this new variable into EGLIBC's + build system. + * nscd/Makefile: Ditto. + * option-groups.mak (others-pie-y): Add the variable. + 2011-07-06 Sebastan Andrzej Siewior <bigeasy@linutronix.de> * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ diff --git a/libc/Makerules b/libc/Makerules index 1e7936895..f12679354 100644 --- a/libc/Makerules +++ b/libc/Makerules @@ -420,6 +420,7 @@ install-others += $(install-others-y) install-sbin += $(install-sbin-y) modules += $(modules-y) others += $(others-y) +others-pie += $(others-pie-y) routines += $(routines-y) static-only-routines += $(static-only-routines-y) sysdep_routines += $(sysdep_routines-y) diff --git a/libc/nscd/Makefile b/libc/nscd/Makefile index 9e1821546..a61a42a26 100644 --- a/libc/nscd/Makefile +++ b/libc/nscd/Makefile @@ -46,7 +46,7 @@ endif ifeq ($(have-thread-library),yes) others-$(OPTION_EGLIBC_INET) += nscd -others-pie += nscd +others-pie-$(OPTION_EGLIBC_INET) += nscd install-sbin-$(OPTION_EGLIBC_INET) += nscd extra-objs-$(OPTION_EGLIBC_INET) += $(nscd-modules:=.o) diff --git a/libc/option-groups.mak b/libc/option-groups.mak index 7d9f9a43e..e534e31e5 100644 --- a/libc/option-groups.mak +++ b/libc/option-groups.mak @@ -34,6 +34,7 @@ install-bin-y := install-others-y := install-sbin-y := others-y := +others-pie-y := routines-y := test-srcs-y := tests-y := |