From 157f39385ac8205ffd25a61c948349ccc88c5f20 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Thu, 27 Jun 2019 20:39:16 +0100 Subject: [PATCH] Change -w to "use warnings;" in tools/get-version This is more idiomatic and consistent with everywhere else. --- tools/get-version | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/get-version b/tools/get-version index 90d6a1b..a184ed7 100755 --- a/tools/get-version +++ b/tools/get-version @@ -1,6 +1,7 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl use strict; +use warnings; open(CONF, "configure.ac") or die "Couldn't open configure.ac: $!\n";