View | Details | Raw Unified | Return to bug 62047
Collapse All | Expand All

(-)/usr/src/lib/libedit/makelist (-1 / +1 lines)
Lines 146-152 Link Here
146
#
146
#
147
-fh)
147
-fh)
148
    cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
148
    cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
149
    sort | LC_ALL=C tr 'a-z' 'A-Z' | $AWK '
149
    sort | LC_ALL=C tr [:lower:] [:upper:] | $AWK '
150
	BEGIN {
150
	BEGIN {
151
	    printf("/* Automatically generated file, do not edit */\n");
151
	    printf("/* Automatically generated file, do not edit */\n");
152
	    printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
152
	    printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
(-)/usr/src/sbin/route/Makefile (-1 / +1 lines)
Lines 11-17 Link Here
11
11
12
keywords.h: keywords
12
keywords.h: keywords
13
	sed -e '/^#/d' -e '/^$$/d' ${.CURDIR}/keywords > _keywords.tmp
13
	sed -e '/^#/d' -e '/^$$/d' ${.CURDIR}/keywords > _keywords.tmp
14
	LC_ALL=C tr 'a-z' 'A-Z' < _keywords.tmp | paste _keywords.tmp - | \
14
	LC_ALL=C tr '[:lower:]' '[:upper:]' < _keywords.tmp | paste _keywords.tmp - | \
15
	    awk '{ \
15
	    awk '{ \
16
		if (NF > 1) \
16
		if (NF > 1) \
17
			printf "#define\tK_%s\t%d\n\t{\"%s\", K_%s},\n", \
17
			printf "#define\tK_%s\t%d\n\t{\"%s\", K_%s},\n", \

Return to bug 62047