diff options
author | Carlos O'Donell <carlos@redhat.com> | 2016-10-28 14:27:52 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2016-10-28 14:27:52 -0400 |
commit | b2fea743ab4992653b013a5317c8b630a0771f0e (patch) | |
tree | 25b9a32b37149de243cdf82ace578b31cabab93d | |
parent | c31746887dc5007f7b77f8f99b5e9335bebec167 (diff) | |
download | glibc-b2fea743ab4992653b013a5317c8b630a0771f0e.zip glibc-b2fea743ab4992653b013a5317c8b630a0771f0e.tar.gz glibc-b2fea743ab4992653b013a5317c8b630a0771f0e.tar.bz2 |
Fix building tst-linkall-static.
The crypt/ directory is not added as part of the sysdep directories.
Add it when building tst-linkall-static to include crypt.h.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | elf/Makefile | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2016-10-28 Carlos O'Donell <carlos@redhat.com> + * elf/Makefile (CFLAGS-tst-linkall-static): Define. + * math/test-nan-overflow.c: Include stdlib.h for malloc. 2016-10-28 H.J. Lu <hongjiu.lu@intel.com> diff --git a/elf/Makefile b/elf/Makefile index 82c7e05..057a19f 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1280,6 +1280,7 @@ $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig $(objpfx)tst-dlsym-error: $(libdl) +CFLAGS-tst-linkall-static.c = -I../crypt $(objpfx)tst-linkall-static: \ $(common-objpfx)math/libm.a \ $(common-objpfx)crypt/libcrypt.a \ |