summaryrefslogtreecommitdiff
path: root/lib/libedit/makelist
diff options
context:
space:
mode:
authorsketch <sketch@NetBSD.org>2009-02-12 13:39:49 +0000
committersketch <sketch@NetBSD.org>2009-02-12 13:39:49 +0000
commitfc16547f5e147a4ebbb9591a3c5af855acdf1c11 (patch)
treeeb90061411ca9753879e0426b54a0464ad8885c2 /lib/libedit/makelist
parent1ff2d41bea670693773128f6ac5642e0da4e8601 (diff)
More fixes for existing portability stuff.
Diffstat (limited to 'lib/libedit/makelist')
-rw-r--r--lib/libedit/makelist6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/makelist b/lib/libedit/makelist
index 405399d3343..06ae91b5446 100644
--- a/lib/libedit/makelist
+++ b/lib/libedit/makelist
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: makelist,v 1.11 2005/10/22 16:45:03 christos Exp $
+# $NetBSD: makelist,v 1.12 2009/02/12 13:39:49 sketch Exp $
#
# Copyright (c) 1992, 1993
# The Regents of the University of California. All rights reserved.
@@ -83,7 +83,7 @@ case $FLAG in
cat $FILES | $AWK '
BEGIN {
printf("/* Automatically generated file, do not edit */\n");
- printf("#include \"sys.h\"\n#include \"el.h\"\n");
+ printf("#include \"config.h\"\n#include \"el.h\"\n");
printf("private const struct el_bindings_t el_func_help[] = {\n");
low = "abcdefghijklmnopqrstuvwxyz_";
high = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_";
@@ -164,7 +164,7 @@ case $FLAG in
cat $FILES | $AWK '/el_action_t/ { print $3 }' | sort | $AWK '
BEGIN {
printf("/* Automatically generated file, do not edit */\n");
- printf("#include \"sys.h\"\n#include \"el.h\"\n");
+ printf("#include \"config.h\"\n#include \"el.h\"\n");
printf("private const el_func_t el_func[] = {");
maxlen = 80;
needn = 1;