Module Name:    src
Committed By:   roy
Date:           Wed Mar  3 12:09:49 UTC 2010

Modified Files:
        src/lib/libterminfo: genhash genman genterms genthash

Log Message:
Abort an error.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libterminfo/genhash
cvs rdiff -u -r1.2 -r1.3 src/lib/libterminfo/genman
cvs rdiff -u -r1.1 -r1.2 src/lib/libterminfo/genterms
cvs rdiff -u -r1.3 -r1.4 src/lib/libterminfo/genthash

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libterminfo/genhash
diff -u src/lib/libterminfo/genhash:1.5 src/lib/libterminfo/genhash:1.6
--- src/lib/libterminfo/genhash:1.5	Thu Feb  4 12:25:08 2010
+++ src/lib/libterminfo/genhash	Wed Mar  3 12:09:49 2010
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: genhash,v 1.5 2010/02/04 12:25:08 roy Exp $
+# $NetBSD: genhash,v 1.6 2010/03/03 12:09:49 roy Exp $
 
 # Copyright (c) 2009 The NetBSD Foundation, Inc.
 #
@@ -32,6 +32,7 @@
 # This allows us to freely change how we hash or store our string tables
 # in the future.
 
+set -e
 : ${TOOL_AWK:=awk}
 : ${TOOL_NBPERF:=nbperf}
 : ${TOOL_SED:=sed}
@@ -92,7 +93,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("\$NetBSD: genhash,v 1.5 2010/02/04 12:25:08 roy Exp $");
+__RCSID("\$NetBSD: genhash,v 1.6 2010/03/03 12:09:49 roy Exp $");
 
 #include <stdint.h>
 #include <stdlib.h>

Index: src/lib/libterminfo/genman
diff -u src/lib/libterminfo/genman:1.2 src/lib/libterminfo/genman:1.3
--- src/lib/libterminfo/genman:1.2	Wed Feb  3 20:56:54 2010
+++ src/lib/libterminfo/genman	Wed Mar  3 12:09:49 2010
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: genman,v 1.2 2010/02/03 20:56:54 roy Exp $
+# $NetBSD: genman,v 1.3 2010/03/03 12:09:49 roy Exp $
 
 # Copyright (c) 2009 The NetBSD Foundation, Inc.
 #
@@ -29,6 +29,7 @@
 
 # Generate variable tables for terminfo.5 from our source files.
 
+set -e
 : ${TOOL_SED:=sed}
 : ${TOOL_SORT:=sort}
 

Index: src/lib/libterminfo/genterms
diff -u src/lib/libterminfo/genterms:1.1 src/lib/libterminfo/genterms:1.2
--- src/lib/libterminfo/genterms:1.1	Fri Feb 12 12:18:33 2010
+++ src/lib/libterminfo/genterms	Wed Mar  3 12:09:49 2010
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: genterms,v 1.1 2010/02/12 12:18:33 roy Exp $
+# $NetBSD: genterms,v 1.2 2010/03/03 12:09:49 roy Exp $
 
 # Copyright (c) 2010 The NetBSD Foundation, Inc.
 #
@@ -29,6 +29,7 @@
 
 # Generate compiled terminfo descriptions to embed into libterminfo
 
+set -e
 : ${TOOL_TIC:=tic}
 : ${NETBSDSRCDIR:=/usr/src}
 : ${TERMINFO:=${NETBSDSRCDIR}/share/terminfo/terminfo}

Index: src/lib/libterminfo/genthash
diff -u src/lib/libterminfo/genthash:1.3 src/lib/libterminfo/genthash:1.4
--- src/lib/libterminfo/genthash:1.3	Thu Feb  4 09:46:26 2010
+++ src/lib/libterminfo/genthash	Wed Mar  3 12:09:49 2010
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: genthash,v 1.3 2010/02/04 09:46:26 roy Exp $
+# $NetBSD: genthash,v 1.4 2010/03/03 12:09:49 roy Exp $
 
 # Copyright (c) 2009 The NetBSD Foundation, Inc.
 #
@@ -29,6 +29,7 @@
 
 # Generate string and hash tables for our termcap strings in termcap.c
 
+set -e
 : ${TOOL_NBPERF:=nbperf}
 : ${TOOL_SED:=sed}
 
@@ -40,7 +41,7 @@
  * Automatically generated from termcap.c */
 
 #include <sys/cdefs.h>
-__RCSID("\$NetBSD: genthash,v 1.3 2010/02/04 09:46:26 roy Exp $");
+__RCSID("\$NetBSD: genthash,v 1.4 2010/03/03 12:09:49 roy Exp $");
 
 #include <stdint.h>
 #include <stdlib.h>

Reply via email to