~ubuntu-branches/ubuntu/lucid/openssl/lucid-security

« back to all changes in this revision

Viewing changes to util/perlpath.pl

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2010-02-01 15:40:27 UTC
  • Revision ID: james.westby@ubuntu.com-20100201154027-7tlrrbbeddcolb3h
Tags: 0.9.8k-7ubuntu6
* Backport Intel AES-NI support from
  http://rt.openssl.org/Ticket/Display.html?id=2067 (LP: #485518).
* Don't change perl #! paths under .pc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
sub wanted
13
13
        {
 
14
        if (/^\.pc/) {
 
15
                $prune = 1;
 
16
                return;
 
17
        }
14
18
        return unless /\.pl$/ || /^[Cc]onfigur/;
15
19
 
16
20
        open(IN,"<$_") || die "unable to open $dir/$_:$!\n";