diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-12-12 23:31:51 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-12-12 23:31:51 +0000 |
commit | c855adcfd507efc512fb7a2c5f48e8e3b1f13b71 (patch) | |
tree | 7cd883838edae707e1f644880f761b99697364c0 /lang/nawk/files/patch-bb | |
parent | Add USE_PERL5. (diff) |
Update to the 29-Nov-2002 distribution.
Since the distfile isn't versioned, this was the only way to fix the
"make distclean all" problem on 5-CURRENT.
Approved by: kris
Notes
Notes:
svn path=/head/; revision=71584
Diffstat (limited to '')
-rw-r--r-- | lang/nawk/files/patch-bb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lang/nawk/files/patch-bb b/lang/nawk/files/patch-bb deleted file mode 100644 index 1d7ac7a2633a..000000000000 --- a/lang/nawk/files/patch-bb +++ /dev/null @@ -1,34 +0,0 @@ -*** main.c.orig Mon Oct 19 18:49:03 1998 ---- main.c Wed Jan 13 17:51:59 1999 -*************** -*** 27,32 **** ---- 27,33 ---- - #define DEBUG - #include <stdio.h> - #include <ctype.h> -+ #include <locale.h> - #include <stdlib.h> - #include <string.h> - #include <signal.h> -*************** -*** 55,61 **** - char *fs = NULL, *marg; - int temp; - -! cmdname = argv[0]; - if (argc == 1) { - fprintf(stderr, "Usage: %s [-f programfile | 'program'] [-Ffieldsep] [-v var=value] [files]\n", cmdname); - exit(1); ---- 56,67 ---- - char *fs = NULL, *marg; - int temp; - -! setlocale(LC_ALL, ""); -! -! if ((cmdname = strrchr(argv[0], '/')) != NULL) -! cmdname++; -! else -! cmdname = argv[0]; - if (argc == 1) { - fprintf(stderr, "Usage: %s [-f programfile | 'program'] [-Ffieldsep] [-v var=value] [files]\n", cmdname); - exit(1); |