Changeset 2 for PATCHED


Ignore:
Timestamp:
01/06/09 15:06:14 (15 years ago)
Author:
ymipsl
Message:

YM : correction sur la V1.1 pour les compilateurs IBM et gfortran. N'insÚre plus automatiquement un espace aprÚs -I ou -D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • PATCHED/FCM_V1.1/lib/Fcm/SrcFile.pm

    r1 r2  
    667667  # List of defined macros, add "-D" in front of each macro 
    668668  my @ppkeys  = split /\s+/, $self->select_tool ($name . 'KEYS'); 
    669   @ppkeys     = map {($tool{$name . '_DEFINE' }, $_)} @ppkeys; 
     669  @ppkeys     = map {($tool{$name . '_DEFINE' }. $_)} @ppkeys; 
    670670 
    671671  # Add "-I" in front of each include directories 
    672   @inc        = map {($tool{$name . '_INCLUDE'}, $_)} @inc; 
     672  @inc        = map {($tool{$name . '_INCLUDE'}. $_)} @inc; 
    673673 
    674674  push @command, (@ppflags, @ppkeys, @inc, $self->base); 
Note: See TracChangeset for help on using the changeset viewer.