Changeset 109


Ignore:
Timestamp:
06/27/07 12:02:50 (17 years ago)
Author:
kdeugau
Message:

/trunk

Allow comments and blank lines to remain in scriptlets and other bits;
only skip them completely in the preamble.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/debbuild

    r108 r109  
    472472
    473473LINE: while (<SPECFILE>) {
    474     next if /^#/;       # Ignore comments...
    475     next if /^\s*$/;    # ... and blank lines.
     474    next if /^#/ && $stage eq 'preamble';       # Ignore comments...
     475    next if /^\s*$/ && $stage eq 'preamble';    # ... and blank lines.
    476476
    477477# preprocess %define's
Note: See TracChangeset for help on using the changeset viewer.