Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump Print generated filenames so i remember whi...



details:   https://anonhg.NetBSD.org/src/rev/9b7dbc581c23
branches:  trunk
changeset: 757511:9b7dbc581c23
user:      pooka <pooka%NetBSD.org@localhost>
date:      Wed Sep 01 19:32:11 2010 +0000

description:
Print generated filenames so i remember which ones to commit.

diffstat:

 sys/rump/librump/makerumpif.sh |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (36 lines):

diff -r 7f7fd7aae944 -r 9b7dbc581c23 sys/rump/librump/makerumpif.sh
--- a/sys/rump/librump/makerumpif.sh    Wed Sep 01 19:28:51 2010 +0000
+++ b/sys/rump/librump/makerumpif.sh    Wed Sep 01 19:32:11 2010 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-#      $NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp $
+#      $NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp $
 #
 # Copyright (c) 2009 Antti Kantee.  All rights reserved.
 #
@@ -67,9 +67,9 @@
 ' ${1} | awk -F\| -v rumptop=${RUMPTOP} '
 function fileheaders(file, srcstr)
 {
-       printf("/*\t$NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp $\t*/\n\n") > file
+       printf("/*\t$NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp $\t*/\n\n") > file
        printf("/*\n * Automatically generated.  DO NOT EDIT.\n") > file
-       genstr = "$NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp $"
+       genstr = "$NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp $"
        gsub("\\$", "", genstr)
        printf(" * from: %s\n", srcstr) > file
        printf(" * by:   %s\n", genstr) > file
@@ -91,9 +91,9 @@
 }
 
 $1 == "NAME"{myname = $2;next}
-$1 == "PUBHDR"{pubhdr = rumptop "/" $2;next}
-$1 == "PRIVHDR"{privhdr = rumptop "/" $2;next}
-$1 == "WRAPPERS"{gencalls = rumptop "/" $2;next}
+$1 == "PUBHDR"{pubhdr = rumptop "/" $2;print pubhdr;next}
+$1 == "PRIVHDR"{privhdr = rumptop "/" $2;print privhdr;next}
+$1 == "WRAPPERS"{gencalls = rumptop "/" $2;print gencalls;next}
 
 /^;/{next}
 /\\$/{sub("\\\n", "");getline nextline;$0 = $0 nextline}



Home | Main Index | Thread Index | Old Index