William A. Kennington III | b2c5306 | 2021-02-09 17:48:19 -0800 | [diff] [blame] | 1 | From b44f0d3dbcadb20396dc83a2aa307d54490388ea Mon Sep 17 00:00:00 2001 |
| 2 | From: "William A. Kennington III" <wak@google.com> |
| 3 | Date: Thu, 28 May 2020 23:07:58 -0700 |
| 4 | Subject: [PATCH] conf2struct: Use the right perl |
| 5 | |
| 6 | --- |
| 7 | conf2struct | 3 ++- |
| 8 | 1 file changed, 2 insertions(+), 1 deletion(-) |
| 9 | |
| 10 | diff --git a/conf2struct b/conf2struct |
| 11 | index 8d68741..b88a9b7 100755 |
| 12 | --- a/conf2struct |
| 13 | +++ b/conf2struct |
| 14 | @@ -1,4 +1,5 @@ |
| 15 | -#! /usr/bin/perl -w |
| 16 | +#!/usr/bin/env perl |
| 17 | +use warnings; |
| 18 | |
| 19 | my $license = <<EOF; |
| 20 | # conf2struct: generate libconf parsers that read to structs |
| 21 | -- |
| 22 | 2.27.0.rc0.183.gde8f92d652-goog |
| 23 | |