diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-27 21:37:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-27 21:37:29 +0100 |
commit | 903d3633ec9e9ffe699611351200bebaf2152bd8 (patch) | |
tree | 9177d72a76c7ad588286a86334b4f6e18764f9b9 | |
parent | d4d5b2ddf348bd1e310a5d73da58bae9ec09a41e (diff) | |
download | glibc-903d3633ec9e9ffe699611351200bebaf2152bd8.tar glibc-903d3633ec9e9ffe699611351200bebaf2152bd8.tar.gz glibc-903d3633ec9e9ffe699611351200bebaf2152bd8.tar.bz2 glibc-903d3633ec9e9ffe699611351200bebaf2152bd8.zip |
hurd: fix warning
* sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
-DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -19,6 +19,8 @@ timer_ptr2id to cast struct timer_node * to void *. * scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass --disable-libcilkrts to gcc configure. + * sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add + -DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c. 2018-01-27 James Clarke <jrtc27@jrtc27.com> diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index f0d3373b64..492ace05eb 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -203,4 +203,8 @@ sysdep_headers += net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h \ net/route.h endif +ifeq ($(subdir),nis) +CFLAGS-ypclnt.c += -DUSE_BINDINGDIR=1 +endif + endif # in-Makerules |