summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-01-11 13:07:21 +0000
committerRichard Levitte <levitte@openssl.org>2000-01-11 13:07:21 +0000
commitf1d712ce80e03d16c6728fb03849874bad530598 (patch)
tree83551cb93d49c655c99bd718c154e535395b752b /Configure
parentcc96f6b7a491b99714cd12712db6289e4d6dbb17 (diff)
Make sure that generated files are labeled as such (except in dofile(), for now)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configure b/Configure
index 0c3b1dd3b6..e4faad741e 100755
--- a/Configure
+++ b/Configure
@@ -543,6 +543,7 @@ if ($version =~ /(^[0-9]*)\.([0-9\.]*)/)
open(IN,'<Makefile.org') || die "unable to read Makefile.org:$!\n";
open(OUT,">$Makefile") || die "unable to create $Makefile:$!\n";
+print OUT "### Generated automatically from Makefile.org by Configure.\n\n";
my $sdirs=0;
while (<IN>)
{
@@ -648,6 +649,7 @@ foreach (sort split(/\s+/,$bn_ops))
open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.in:$!\n";
open(OUT,'>crypto/opensslconf.h') || die "unable to create crypto/opensslconf.h:$!\n";
+print OUT "/* Generated automatically from opensslconf.h.in by Configure. */\n\n";
while (<IN>)
{
if (/^#define\s+OPENSSLDIR/)