Changeset 112
- Timestamp:
- 07/12/07 09:59:02 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debbuild
r111 r112 64 64 # Initialized globals 65 65 my $verbosity = 0; 66 my $NoAutoReq = 0; 66 67 my %cmdopts = (type => '', 67 68 stage => 'a', … … 843 844 } elsif (/^conflicts:\s+(.+)/i) { 844 845 $pkgdata{main}{conflicts} .= ", $1"; 846 } elsif (/^autoreq(?:prov)?:\s+(.+)/i) { 847 # we don't handle auto-provides (yet) 848 $NoAutoReq = 1 if $1 =~ /(?:no|0)/i; 845 849 } 846 850 next LINE; … … 990 994 # comma and space here (if needed) in case there were "Requires" specified 991 995 # in the spec file - those would precede these. 992 $pkgdata{$pkg}{requires} .= getreqs("$buildroot/$pkg") ;996 $pkgdata{$pkg}{requires} .= getreqs("$buildroot/$pkg") if ! $NoAutoReq; 993 997 994 998 # magic needed to properly version dependencies...
Note:
See TracChangeset
for help on using the changeset viewer.