Subversion Repositories DevTools

Rev

Rev 275 | Rev 4781 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 275 Rev 369
Line 218... Line 218...
218
        next if ( $symname =~ m/^ScmCompilerOptions/ );         # Not internal data
218
        next if ( $symname =~ m/^ScmCompilerOptions/ );         # Not internal data
219
        next if ( $symname =~ m/^ScmToolsetCompilerOptions/ );  # Not internal data
219
        next if ( $symname =~ m/^ScmToolsetCompilerOptions/ );  # Not internal data
220
 
220
 
221
        local *::sym = $main::{$symname};
221
        local *::sym = $main::{$symname};
222
        $cf_info{$::ScmPlatform}{"\$$symname"} = $::sym  if defined $::sym;
222
        $cf_info{$::ScmPlatform}{"\$$symname"} = $::sym  if defined $::sym;
223
        $cf_info{$::ScmPlatform}{"\@$symname"} = \@::sym if defined @::sym;
223
        $cf_info{$::ScmPlatform}{"\@$symname"} = \@::sym if @::sym;
224
        $cf_info{$::ScmPlatform}{"\%$symname"} = \%::sym if defined %::sym;
224
        $cf_info{$::ScmPlatform}{"\%$symname"} = \%::sym if %::sym;
225
    }
225
    }
226
 
226
 
227
    #
227
    #
228
    #   Write out the Parsed Config File with new information
228
    #   Write out the Parsed Config File with new information
229
    #
229
    #