Changeset 99


Ignore:
Timestamp:
08/07/07 16:36:25 (17 years ago)
Author:
bas
Message:

pxeconfig.in:

  • Use GNU getopt. This means that option and non-option arguments may be intermixed.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Changelog

    r98 r99  
    11XXXX
    22 - List of pxeconfig files are now sorted alphabetically
     3 - Use GNU getopt. This means that option and non-option arguments may be
     4   intermixed.
     5
    36
    470.7
  • trunk/pxeconfig.in

    r98 r99  
    280280  """
    281281  try:
    282     opts, args = getopt.getopt(argv[1:], SHORTOPT_LIST, LONGOPT_LIST)
     282    opts, args = getopt.gnu_getopt(argv[1:], SHORTOPT_LIST, LONGOPT_LIST)
    283283  except getopt.error, detail:
    284284    print __doc__
Note: See TracChangeset for help on using the changeset viewer.