Changeset 39
- Timestamp:
- 02/23/06 11:40:26 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debbuild
r38 r39 333 333 } 334 334 while (<SPECFILE>) { 335 next if /^#/; # Messy. Should be possible to do better. :/ 335 336 redo LINE if /^\%/; 336 337 $pkgdata{$subname}{desc} .= " $_"; … … 694 695 695 696 # Do this here since we're doing {depends}... 696 $pkgdata{$pkg}{provides} =~ s/^, // ;697 $pkgdata{$pkg}{provides} =~ s/^, // if defined($pkgdata{$pkg}{provides}); 697 698 698 699 # Gotta do this next, otherwise the control file has nowhere to go. >:( … … 720 721 "Maintainer: $pkgdata{main}{packager}\n". 721 722 "Depends: $pkgdata{$pkg}{depends}\n". 722 "Provides: $pkgdata{$pkg}{provides}\n".723 ( defined($pkgdata{$pkg}{provides}) ? "Provides: $pkgdata{$pkg}{provides}\n" : '' ). 723 724 "Description: $pkgdata{$pkg}{summary}\n"; 724 725 $control .= "$pkgdata{$pkg}{desc}\n"; … … 917 918 my $pkgtree = $_[0]; 918 919 919 print " checking reqs on executables in $pkgtree...\n";920 print "Checking library requirements...\n"; 920 921 my @reqlist = qx { find $pkgtree -type f -perm 755 | grep -v $pkgtree/etc | xargs ldd }; 921 922
Note:
See TracChangeset
for help on using the changeset viewer.