diff options
-rw-r--r-- | sys/kern/makesyscalls.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index ba27763..020c5de 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -1,6 +1,6 @@ #! /bin/sh - # @(#)makesyscalls.sh 8.1 (Berkeley) 6/10/93 -# $Id: makesyscalls.sh,v 1.12 1995/03/16 18:12:39 bde Exp $ +# $Id: makesyscalls.sh,v 1.13 1995/09/19 13:30:51 bde Exp $ set -e @@ -59,8 +59,8 @@ awk < $1 " printf " * DO NOT EDIT-- this file is automatically generated.\n" > syshide } NR == 1 { - gsub("\\$Id: ", "", $0) - gsub(" \\$", "", $0) + gsub("[$]Id: ", "", $0) + gsub(" [$]", "", $0) printf " * created from%s\n */\n\n", $0 > sysent printf "#include <sys/param.h>\n" > sysent printf "#include <sys/sysent.h>\n" > sysent |