Ignore:
Timestamp:
Oct 26, 2008, 1:33:24 AM (17 years ago)
Author:
bird
Message:

GNU Make tests: added check for case insensitive file system, fixed default_names so it'll for on HFS+.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/tests/scripts/features/default_names

    r969 r1937  
    1313# DOS/WIN32 platforms preserve case, but Makefile is the same file as makefile.
    1414# Just test what we can here (avoid Makefile versus makefile test).
     15# bird: made this generic, darwin is also defaulting to case insensitive fs.
    1516
    16 if ($port_type eq 'UNIX') {
     17if ($port_type eq 'UNIX' && !$case_insensitive_fs) {
    1718  # Create another makefile called "makefile"
    1819  open(MAKEFILE,"> makefile");
     
    3132unlink $makefile;
    3233
    33 if ($port_type eq 'UNIX') {
     34if ($port_type eq 'UNIX' && !$case_insensitive_fs) {
    3435  &run_make_with_options("","",&get_logfile);
    3536  &compare_output("It chose makefile\n",&get_logfile(1));
Note: See TracChangeset for help on using the changeset viewer.