Subversion Repositories DevTools

Rev

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

Rev 1443 Rev 4941
Line 218... Line 218...
218
my $my_entry;
218
my $my_entry;
219
writeCmt( $fh, 'Paths to external dependent packages');
219
writeCmt( $fh, 'Paths to external dependent packages');
220
foreach my $entry (@{$ScmBuildPkgRules{$GBE_MAKE_TARGET} })
220
foreach my $entry (@{$ScmBuildPkgRules{$GBE_MAKE_TARGET} })
221
{
221
{
222
    $my_entry = $entry if ( $entry->{'NAME'} eq $package_name );
222
    $my_entry = $entry if ( $entry->{'NAME'} eq $package_name );
-
 
223
    my @comments;
223
    next unless ( $entry->{'TYPE'} eq 'link' );
224
    push (@comments , "Package: $entry->{'NAME'}");
-
 
225
    push (@comments , "Package included via BuildPkgArchive") unless ( $entry->{'TYPE'} eq 'link' );
224
    writeCmt( $fh, "Package: $entry->{'NAME'}");
226
    writeCmt( $fh, @comments);
225
    writeDef( $fh, 'GBE_PKG_PATH_' . $entry->{'NAME'}, WindowsPath($entry->{'ROOT'}) );
227
    writeDef( $fh, 'GBE_PKG_PATH_' . $entry->{'NAME'}, WindowsPath($entry->{'ROOT'}) ) if ( $entry->{'TYPE'} eq 'link' );
226
    writeDef( $fh, 'GBE_PKG_VERSION_' . $entry->{'NAME'}, $entry->{'DVERSION'} );
228
    writeDef( $fh, 'GBE_PKG_VERSION_' . $entry->{'NAME'}, $entry->{'DVERSION'} );
227
}
229
}
228
 
230
 
229
#
231
#
230
#   Define the base of the data files provided with this package
232
#   Define the base of the data files provided with this package