aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-01 07:15:16 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-01 07:15:16 +0000
commit407a7d0eb770ae079a662e7b2b8cff5a750ca6ed (patch)
tree54379335a4475b55620c7fa3a2448afef056c8f5 /sysdeps
parentb7e2d9a56b3f16b231c2370b589b11d3a322337b (diff)
downloadglibc-407a7d0eb770ae079a662e7b2b8cff5a750ca6ed.tar
glibc-407a7d0eb770ae079a662e7b2b8cff5a750ca6ed.tar.gz
glibc-407a7d0eb770ae079a662e7b2b8cff5a750ca6ed.tar.bz2
glibc-407a7d0eb770ae079a662e7b2b8cff5a750ca6ed.zip
Update.
1999-02-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * manual/libc.texinfo: Wrap @top node inside @ifnottex instead of @ifinfo. 1999-02-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * iconvdata/Makefile: Always include iconv-rules, but disable rule to regenerate it if avoid-generated. * Makeconfig: Always include sys-dirs, but disable rule to regenerate it when avoid-generated. * sysdeps/unix/Makefile: Put `ifndef avoid-generated' only around rule to generate sysd-syscalls. * elf/Makefile (generated): Remove $(objpfx) from names.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile
index 9727844897..ffa207db52 100644
--- a/sysdeps/unix/Makefile
+++ b/sysdeps/unix/Makefile
@@ -270,7 +270,6 @@ endif
endif
-ifndef avoid-generated
ifndef inhibit-unix-syscalls
# Sysdep dirs unix/... can contain a file syscalls.list,
@@ -286,6 +285,7 @@ endif
export sysdirs
export asm_CPP := $(COMPILE.S) -E -x assembler-with-cpp
+ifndef avoid-generated
$(common-objpfx)sysd-syscalls: $(..)sysdeps/unix/make-syscalls.sh \
$(wildcard $(+sysdep_dirs:%=%/syscalls.list))
for dir in $(+sysdep_dirs); do \
@@ -294,6 +294,7 @@ $(common-objpfx)sysd-syscalls: $(..)sysdeps/unix/make-syscalls.sh \
test $$dir = $(..)sysdeps/unix && break; \
done > $@T
mv -f $@T $@
+endif
# This syscall objects depend on s-proto.d, which is generated to
# specify dependencies generated syscalls with have on headers.
@@ -314,4 +315,3 @@ common-generated += s-proto.d
postclean-generated += sysd-syscalls
endif
-endif