From: Timo Sirainen Date: Mon, 11 Dec 2017 16:07:35 +0000 (+0200) Subject: config: Add a warning comment to the generated all-settings.c X-Git-Tag: 2.3.0.rc1~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2cd173a084d6aafbbcdb68fc8f8ee3da468a57d;p=thirdparty%2Fdovecot%2Fcore.git config: Add a warning comment to the generated all-settings.c --- diff --git a/src/config/settings-get.pl b/src/config/settings-get.pl index 9c11f28720..99eaacb439 100755 --- a/src/config/settings-get.pl +++ b/src/config/settings-get.pl @@ -1,6 +1,13 @@ #!/usr/bin/env perl use strict; +print "/* WARNING: THIS FILE IS GENERATED - DO NOT PATCH!\n"; +print " It's not enough alone in any case, because the defaults may be\n"; +print " coming from the individual *-settings.c in some situations. If you\n"; +print " wish to modify defaults, change the other *-settings.c files and\n"; +print " just delete this file. This file will be automatically regenerated\n"; +print " by make. (This file is distributed in the tarball only because some\n"; +print " systems might not have Perl installed.) */\n"; print '#include "lib.h"'."\n"; print '#include "array.h"'."\n"; print '#include "ipwd.h"'."\n";