Changeset 72


Ignore:
Timestamp:
11/15/06 13:40:52 (17 years ago)
Author:
kdeugau
Message:

/trunk

Add %docdir support. Sort of. Mostly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/debbuild

    r71 r72  
    574574          next if /^\%docdir/;
    575575
     576          # %doc needs extra processing, because it can be a space-separated list.
     577          if (/^\%doc/) {
     578            s/^\%doc\s+//;
     579            foreach (split()) {
     580              $filelist{$pkgname} .= " %{_docdir}/$_";
     581            }
     582            next;
     583          }
     584
    576585          # Conffiles.  Note that Debian and RH have similar, but not
    577586          # *quite* identical ideas of what constitutes a conffile.  Nrgh.
Note: See TracChangeset for help on using the changeset viewer.