Ignore:
Timestamp:
Jun 17, 2012, 10:45:31 PM (13 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 3.82. Previous GNU make base version was gnumake-2008-10-28-CVS.

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

    • Property svn:ignore
      •  

        old new  
        1313stamp-*
        1414makebook*
         15
        1516.*gdbinit
         17.gdb_history
         18
        1619*.dep
        1720*.dvi
         
        3134*.pg
        3235*.pgs
         36
        3337README
        3438README.DOS
        3539README.W32
         40README.OS2
        3641aclocal.m4
        3742autom4te.cache
         
        5257config.h.W32
        5358config.h-vms
         59
        5460loadavg
        5561loadavg.c
        5662make
         63
        5764.deps
        5865.dep_segment
         66ID
         67TAGS
         68
        5969_*
        6070sun4
         
        7282sol2
        7383i486-linux
         84
        7485customs
         86
        7587install-sh
        7688mkinstalldirs
         89
         90.directive.asc
  • trunk/src/kmk/getopt.c

    r1993 r2591  
    55
    66Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
    7 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
    8 Foundation, Inc.
     71997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
     82010 Free Software Foundation, Inc.
    99
    1010NOTE: The canonical source of this file is maintained with the GNU C Library.
     
    683683                {
    684684                  if (opterr)
    685                    if (argv[optind - 1][1] == '-')
    686                     /* --option */
    687                     fprintf (stderr,
    688                      _("%s: option `--%s' doesn't allow an argument\n"),
    689                      argv[0], pfound->name);
    690                    else
    691                     /* +option or -option */
    692                     fprintf (stderr,
    693                      _("%s: option `%c%s' doesn't allow an argument\n"),
    694                      argv[0], argv[optind - 1][0], pfound->name);
     685                    {
     686                      if (argv[optind - 1][1] == '-')
     687                        /* --option */
     688                        fprintf (stderr,
     689                         _("%s: option `--%s' doesn't allow an argument\n"),
     690                         argv[0], pfound->name);
     691                      else
     692                        /* +option or -option */
     693                        fprintf (stderr,
     694                         _("%s: option `%c%s' doesn't allow an argument\n"),
     695                         argv[0], argv[optind - 1][0], pfound->name);
     696                    }
    695697
    696698                  nextchar += strlen (nextchar);
Note: See TracChangeset for help on using the changeset viewer.