Source-Changes-HG archive

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

[src/netbsd-1-4]: src/distrib/miniroot pullup 1.5->1.6 (mrg)



details:   https://anonhg.NetBSD.org/src/rev/7636253404b9
branches:  netbsd-1-4
changeset: 469135:7636253404b9
user:      perry <perry%NetBSD.org@localhost>
date:      Thu Jul 01 19:26:19 1999 +0000

description:
pullup 1.5->1.6 (mrg)

diffstat:

 distrib/miniroot/makeconf.awk |  17 +++++++----------
 1 files changed, 7 insertions(+), 10 deletions(-)

diffs (39 lines):

diff -r 836ea17d45b9 -r 7636253404b9 distrib/miniroot/makeconf.awk
--- a/distrib/miniroot/makeconf.awk     Thu Jul 01 19:25:31 1999 +0000
+++ b/distrib/miniroot/makeconf.awk     Thu Jul 01 19:26:19 1999 +0000
@@ -1,21 +1,15 @@
-#      $NetBSD: makeconf.awk,v 1.5 1999/03/23 10:20:01 leo Exp $
+#      $NetBSD: makeconf.awk,v 1.5.2.1 1999/07/01 19:26:19 perry Exp $
 
 #
 # generate crunchgen(1) configuration file from `list' spec.
 #
 
 BEGIN {
-       printf("#\n# This file is automatically generated by `makeconf'\n#\n\n");
-       printf("\nlibs -lrmt -ledit -lutil -lcurses -ltermcap -lcrypt -ll -lm -lkvm\n");
-
+       printf("#\n# This file is automatically generated by `makeconf'\n");
+       printf("#\n\n");
 }
 
-$1 == "SRCDIRS" {
-       $1 = tolower($1);
-       print;
-}
-
-$1 == "LIBS" {
+$1 == "LIBS" || $1 == "SRCDIRS" {
        $1 = tolower($1);
        print;
 }
@@ -48,6 +42,9 @@
 END {
        # write crunchgen configuration
 
+       # default libs
+       printf("\nlibs -lrmt -ledit -lutil -lcurses -ltermcap -lcrypt -ll -lm -lkvm\n");
+
        # `prog' directives; print 8 to a line
        column = 0;
        for (p in progs) {



Home | Main Index | Thread Index | Old Index