Change -w to "use warnings;" in tools/get-version

This is more idiomatic and consistent with everywhere else.
This commit is contained in:
Adam Spiers 2019-06-27 20:39:16 +01:00
parent 0979a9c7bd
commit 157f39385a

View file

@ -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";