# HG changeset patch # User Dario Sestito # Date 1249553505 -3600 # Node ID 1d3a752f672324345d50f8b213093ffa9d776218 # Parent 08d0bd91ad20d1bcda3d6a3caa70b3076955f559# Parent 15307a7772ea10479a1199ffe05b06f8e26fc571 Merge diff -r 08d0bd91ad20 -r 1d3a752f6723 common/tools/csvToSysDef.pl --- a/common/tools/csvToSysDef.pl Thu Aug 06 10:18:09 2009 +0100 +++ b/common/tools/csvToSysDef.pl Thu Aug 06 11:11:45 2009 +0100 @@ -50,6 +50,8 @@ # For each package in CSV... foreach my $package (@packages) { + # If the sources.csv does not include a sys def for this package, it doesn't get built + next unless $package->{sysdef}; warn "Warning: Package $package->{dst} does not appear on the local system\n" unless -d $package->{dst}; # Look for the pkg defn in the root of the package tree my $pkgDef = "$package->{dst}/$package->{sysdef}";