Changeset 119 for trunk/debbuild
- Timestamp:
- 07/27/07 16:56:59 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debbuild
r118 r119 481 481 next if /^#/ && $stage eq 'preamble'; # Ignore comments... 482 482 next if /^\s*$/ && $stage eq 'preamble'; # ... and blank lines. 483 484 # no sense in continuing if we find something we don't grok 485 # Yes, this is really horribly fugly. But it's a cheap crosscheck against invalid 486 # %-tags which also make rpmbuild barf. In theory. 487 # notes: some of these are not *entirely* case-sensitive (%ifxxx), but most are. 488 # Extracted from the Maximum RPM online doc via: 489 # grep -h %[a-z] *|perl -e 'while (<>) { /\%([a-z0-9]+)\b/; print "$1|\n"; }'|sort -u 490 if (/^%[a-z]/ && 491 $_ !~ /^%(?:attr|build|check|clean|config|configure|defattr|define|description| 492 dir|doc|docdir|else|endif|files|ghost|if|ifarch|ifn|ifnarch|ifnos|ifnxxx|fos|ifxxx| 493 install|package|patch|post|postun|pre|prep|preun|readme|setup| 494 triggerin|triggerpostun|triggerun|verify|verifyscript)\b/x 495 ) { 496 my ($badtag) = (/^%([a-z]+)/i); 497 die "Unknown tag \%$badtag at line $. of $specfile\n"; 498 } 483 499 484 500 # preprocess %define's
Note:
See TracChangeset
for help on using the changeset viewer.