Changeset 3


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

YM : correction sur la V1.2 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.2/lib/Fcm/SrcFile.pm

    r1 r3  
    803803  # List of defined macros, add "-D" in front of each macro 
    804804  my @ppkeys  = split /\s+/, $self->select_tool ($name . 'KEYS'); 
    805   @ppkeys     = map {($tool{$name . '_DEFINE' }, $_)} @ppkeys; 
     805  @ppkeys     = map {($tool{$name . '_DEFINE' }. $_)} @ppkeys; 
    806806 
    807807  # Add "-I" in front of each include directories 
    808   @inc        = map {($tool{$name . '_INCLUDE'}, $_)} @inc; 
     808  @inc        = map {($tool{$name . '_INCLUDE'}. $_)} @inc; 
    809809 
    810810  push @command, (@ppflags, @ppkeys, @inc, $self->base); 
Note: See TracChangeset for help on using the changeset viewer.