diff options
author | Russ Allbery <eagle@eyrie.org> | 2016-01-03 16:56:57 -0800 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2016-01-03 16:56:57 -0800 |
commit | 7aab166369a2d8bd3b15715b4a5c1c18757f843d (patch) | |
tree | add395a5df8568c1d9bcb6a8d0d9f0faab9f7e6f /contrib | |
parent | 6d6718c3c19180adbb5b17985c539d2a4a693f8a (diff) |
Allow contrib/wallet-contacts to work on Perl 5.008
I'll probably bump this later, but for now that's the minimum
supported Perl version for wallet.
Change-Id: I97e36f850dcb3dcd3a78daf34d8a35bf597bdb43
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/wallet-contacts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/wallet-contacts b/contrib/wallet-contacts index c2f3bf1..0c72c9c 100755 --- a/contrib/wallet-contacts +++ b/contrib/wallet-contacts @@ -12,7 +12,7 @@ # Modules and declarations ############################################################################## -use 5.010; +use 5.008; use autodie; use strict; use warnings; |