~ubuntu-branches/ubuntu/wily/openssl/wily

« back to all changes in this revision

Viewing changes to tools/c_rehash.in

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-06-15 08:17:16 UTC
  • mfrom: (11.1.62 sid)
  • Revision ID: package-import@ubuntu.com-20150615081716-ssoiott2b3v1emou
Tags: 1.0.2c-1ubuntu1
* Merge with Debian, remaining changes.
  - debian/libssl1.0.0.postinst:
    + Display a system restart required notification on libssl1.0.0
      upgrade on servers.
    + Use a different priority for libssl1.0.0/restart-services depending
      on whether a desktop, or server dist-upgrade is being performed.
  - debian/{libssl1.0.0-udeb.dirs, control, rules}: Create
    libssl1.0.0-udeb, for the benefit of wget-udeb (no wget-udeb package
    in Debian).
  - debian/{libcrypto1.0.0-udeb.dirs, libssl1.0.0.dirs, libssl1.0.0.files,
    rules}: Move runtime libraries to /lib, for the benefit of
    wpasupplicant.
  - debian/patches/perlpath-quilt.patch: Don't change perl #! paths under
    .pc.
  - debian/rules:
    + Don't run 'make test' when cross-building.
    + Use host compiler when cross-building.  Patch from Neil Williams.
    + Don't build for processors no longer supported: i586 (on i386)
    + Fix Makefile to properly clean up libs/ dirs in clean target.
    + Replace duplicate files in the doc directory with symlinks.
  - debian/control: Mark Debian Vcs-* as XS-Debian-Vcs-*
  - debian/rules: Enable optimized 64bit elliptic curve code contributed
    by Google.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
my $removelinks = 1;
14
14
 
15
15
##  Parse flags.
16
 
while ( $ARGV[0] =~ '-.*' ) {
 
16
while ( $ARGV[0] =~ /^-/ ) {
17
17
    my $flag = shift @ARGV;
18
18
    last if ( $flag eq '--');
19
 
    if ( $flag =~ /-h/) {
 
19
    if ( $flag eq '-h') {
20
20
            help();
21
21
    } elsif ( $flag eq '-n' ) {
22
22
            $removelinks = 0;