]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 14 Jul 1998 15:37:33 +0000 (15:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 14 Jul 1998 15:37:33 +0000 (15:37 +0000)
1998-07-14  Mark Kettenis  <kettenis@phys.uva.nl>

* mach/Makefile: Create target directory before generating
mach-syscalls.mk.
* mach/Machrules: Invoke awk using AWK variable.  Create target
directory before generating server stubs.

ChangeLog
mach/Machrules
mach/Makefile

index 9ff57f5251ed479fca45889890a946b2f1ad9859..8cf6fa2e6baf85bf9ad6aa91a50f8619dd56a836 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1998-07-14  Mark Kettenis  <kettenis@phys.uva.nl>
+
+       * mach/Makefile: Create target directory before generating
+       mach-syscalls.mk.
+       * mach/Machrules: Invoke awk using AWK variable.  Create target
+       directory before generating server stubs.
+
 1998-07-14  Ulrich Drepper  <drepper@cygnus.com>
 
        * wcsmbs/wcslen.c (__wcslen): Fix comment.
index 89ac567b394f862db09ecccc4a1cd6cbce4c10ad..b5a6622691ada1fe38b6c479a6abac99ac7445ef 100644 (file)
@@ -83,7 +83,7 @@ endif
 # intermediate in order to make %.ir and then removed before re-exec, when
 # %.uh is built all over again to build %.h.
 $(objpfx)%.ir: $(objpfx)%.uh $(objpfx)%.h
-       (awk "NF == 4 && (\$$2 == \"Routine\" || \$$2 == \"SimpleRoutine\")\
+       ($(AWK) "NF == 4 && (\$$2 == \"Routine\" || \$$2 == \"SimpleRoutine\")\
                { printf \"$*-calls += %s\\n\", \$$3 }" $<      ;\
         echo '$$($*-calls:%=$$(objpfx)R\%C_%.c): $$(objpfx)$*.ustamp ;';\
        ) > $@-new
@@ -136,6 +136,7 @@ vpath %_server.c $(addprefix $(objpfx),$(sort $(dir $(server-interfaces))))
 
 # Build the server stubs in $(objdir).
 $(objpfx)%_server.c $(objpfx)%_server.h:
+       $(make-target-directory)
        $(include-%.defs) | \
        $(MIG) - /dev/null -prefix _S_ \
               $(MIGFLAGS) $(server-MIGFLAGS) $(MIGFLAGS-$*) \
index 20812662df6d903e7eec05afbe8fef4dfdbd0440..2901fa2aa81d2f4732c57e27cb676413c2efee36 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -70,6 +70,7 @@ endif
 endif
 $(objpfx)mach-syscalls.mk: syscalls.awk Makefile
 # Go kludges!!!
+       $(make-target-directory)
        echo '#include <mach/syscall_sw.h>' | \
        DEPENDENCIES_OUTPUT='$@-dep $@' \
        $(CC) $(CPPFLAGS) -E -x c-header - \