diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 655b4420ea..8c6c6b553b 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -1,9 +1,10 @@ ifeq ($(subdir), io) -sysdep_routines := $(sysdep_routines) fxstat lxstat xstat +sysdep_routines += fxstat lxstat xstat endif ifeq ($(subdir), misc) -sysdep_routines := $(sysdep_routines) xmknod +sysdep_routines += xmknod mount umount s_ptrace +headers += sys/mount.h endif #ifeq ($(subdir), posix) @@ -28,3 +29,7 @@ headers += nfs/nfs.h endif rtld-installed-name = ld-gnu.so.1 + +# Don't compile the ctype glue code, since there is no old non-GNU C library. +inhibit-glue = yes + |