Changeset 113


Ignore:
Timestamp:
07/13/07 16:24:33 (17 years ago)
Author:
kdeugau
Message:

/trunk

Add some %{perl_*} macro expansions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/debbuild

    r112 r113  
    3030use Fcntl;      # for sysopen flags
    3131use Cwd 'abs_path';     # for finding where files really are
     32use Config;
    3233
    3334# regex debugger
     
    15291530    $macrostring =~ s|%{optflags}|$optflags{$hostarch}|g;
    15301531
     1532    # Perl @INC/...lib locations, and other related bits.
     1533    $macrostring =~ s|%{perl_archlib}|$Config{installarchlib}|g;
     1534    $macrostring =~ s|%{perl_sitelib}|$Config{installsitelib}|g;
     1535    $macrostring =~ s|%{perl_sitearch}|$Config{installsitearch}|g;
     1536    $macrostring =~ s|%{perl_vendorlib}|$Config{installvendorlib}|g;
     1537    $macrostring =~ s|%{perl_vendorarch}|$Config{installvendorarch}|g;
     1538
    15311539  } # done with globals section
    15321540
Note: See TracChangeset for help on using the changeset viewer.