From: Wayne Davison Date: Wed, 8 Jul 2020 06:49:37 +0000 (-0700) Subject: Avoid non-updating proto.h on Alpine. X-Git-Tag: v3.2.3pre1~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7265d9611641d24a8570a2ebd0e313b6923346a9;p=thirdparty%2Frsync.git Avoid non-updating proto.h on Alpine. --- diff --git a/mkproto.awk b/mkproto.awk index ab97d54f..a64d132e 100644 --- a/mkproto.awk +++ b/mkproto.awk @@ -2,6 +2,7 @@ BEGIN { while ((getline i < "proto.h") > 0) old_protos = old_protos ? old_protos "\n" i : i + close("proto.h") protos = "/* This file is automatically generated with \"make proto\". DO NOT EDIT */\n" }