diff options
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/Dist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Dist b/sysdeps/unix/sysv/linux/Dist new file mode 100644 index 0000000000..db5ff9596a --- /dev/null +++ b/sysdeps/unix/sysv/linux/Dist @@ -0,0 +1,2 @@ +sys/socketcall.h +sys/timex.h diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 702ad047a3..6e1dd8ccb2 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -12,10 +12,15 @@ endif ifeq ($(subdir), time) sysdep_routines := $(sysdep_routines) adjtimex +headers += sys/timex.h endif ifeq ($(subdir), sysvipc) sysdep_routines := $(sysdep_routines) ipc endif -headers := $(headers) sys/socketcall.h sys/timex.h +ifeq ($(subdir), socket) +headers += sys/socketcall.h +endif + +config-LDFLAGS = -Wl,-dynamic-linker=/lib/ld-gnu.so.1 |