diff options
author | Roland McGrath <roland@gnu.org> | 2008-02-01 00:01:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2008-02-01 00:01:25 +0000 |
commit | 363a641b1c856bf497840c6f7ed975366b48eb0e (patch) | |
tree | 80fa331870fbe6a2d76692d112e84cdbed7b99f3 /sysdeps/unix/Makefile | |
parent | 7bd00dbfeb3398bead0ff2c0a9b190791cf251fa (diff) | |
download | glibc-363a641b1c856bf497840c6f7ed975366b48eb0e.tar.gz glibc-363a641b1c856bf497840c6f7ed975366b48eb0e.tar.xz glibc-363a641b1c856bf497840c6f7ed975366b48eb0e.zip |
* Makeconfig (sysd-rules-targets): New variable.
* sysdeps/unix/make-syscalls.sh: Use it in the rules emitted. * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
Diffstat (limited to 'sysdeps/unix/Makefile')
-rw-r--r-- | sysdeps/unix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index 4ab06ba33e..2696e7fb62 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991,1992,1993,1994,1995,1996,1997,1998,1999,2003, 2006 +# Copyright (C) 1991,1992,1993,1994,1995,1996,1997,1998,1999,2003, 2006, 2008 # Free Software Foundation, Inc. # This file is part of the GNU C Library. @@ -260,7 +260,7 @@ ifndef inhibit-unix-syscalls # which specifies objects to be compiled as simple Unix system calls. -include $(common-objpfx)sysd-syscalls -omit-deps += $(unix-syscalls) +omit-deps += $(foreach t,$(sysd-rules-targets),$(unix-syscalls:%=$t)) ifeq (misc,$(subdir)) sysdep_routines += $(unix-extra-syscalls) |