Changeset 19762


Ignore:
Timestamp:
2009-06-08T16:35:13+12:00 (15 years ago)
Author:
ak19
Message:

No longer convert spaces to underscores in the rename_file subroutine, since underscores mess up incremental build (file renaming forces incremental building to rebuild everything again since incr building thinks the file with the original file has been deleted and new files have been added).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/util.pm

    r19616 r19762  
    10381038    }
    10391039
    1040     # Replace spaces with underscore.
    1041     # Do this first else it can go wrong below when getting tailname
    1042     $filename =~ s/ /_/g;
     1040    # No longer replace spaces with underscores, since underscores mess with incremental rebuild
     1041    ### Replace spaces with underscore. Do this first else it can go wrong below when getting tailname
     1042    ###$filename =~ s/ /_/g;
    10431043
    10441044    my ($tailname,$dirname,$suffix);
Note: See TracChangeset for help on using the changeset viewer.