From b5a47ecb2006aba962c8fa8d865f61bc8242ca49 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 16 Oct 2005 09:45:40 +0000 Subject: [PATCH] 2005-08-05 Roland McGrath [BZ #1251] * mach/shortcut.awk: Ignore `weak_alias' lines. Reported by Alfred M. Szmidt . --- mach/shortcut.awk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mach/shortcut.awk b/mach/shortcut.awk index 18579981221..ea283d49ba6 100644 --- a/mach/shortcut.awk +++ b/mach/shortcut.awk @@ -7,6 +7,8 @@ BEGIN { print "/* This file is generated by shortcut.awk. */"; $1 == "LINTLIBRARY" { print "#include "; next } +$1 == "weak_alias" { next } + # Copy the first line of the definition, but # replace the function name (RPC) with CALL. $NF == rpc \ -- 2.47.2