packaging of Mail::Ezmlm:
* move the two new modules (GpgKeyRing and GpgEzmlm) to a sub directory
This commit is contained in:
parent
e36cb850b5
commit
34438ce978
3 changed files with 8 additions and 10 deletions
|
@ -58,21 +58,17 @@ $GPG_BIN = '/usr/bin/gpg'; # Autoinserted by Makefile.PL
|
|||
|
||||
# == check the gpg path ==
|
||||
$GPG_BIN = '/usr/local/bin/gpg'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
$GPG_BIN = '/usr/bin/gpg'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
$GPG_BIN = '/bin/gpg'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
$GPG_BIN = '/usr/local/bin/gpg2'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
$GPG_BIN = '/usr/bin/gpg2'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
$GPG_BIN = '/bin/gpg2'
|
||||
unless (-e "$GPG_BIN");
|
||||
$GPG_BIN = '/usr/local/bin/gpg'
|
||||
unless (-e "$GPG_BIN");
|
||||
$GPG_BIN = '/bin/gpg'
|
||||
unless (-e "$GPG_BIN");
|
||||
unless (-x "$GPG_BIN");
|
||||
|
||||
# == clean up the path ==
|
||||
local $ENV{'PATH'} = "/bin";
|
|
@ -5,3 +5,5 @@ README
|
|||
Makefile.PL
|
||||
test.pl
|
||||
META.yml
|
||||
Ezmlm/GpgKeyRing.pm
|
||||
Ezmlm/GpgEzmlm.pm
|
||||
|
|
Loading…
Reference in a new issue