NISTZ256: set Z_is_one to boolean 0/1 as is customary.
[openssl.git] / util / mkbuildinf.pl
index ca02d7b0b213485c92df5e7dc3c0fa7f29e1dde4..ffa8a39933f13806d33cf3d9b16b2081bfc17b28 100755 (executable)
@@ -7,7 +7,7 @@ $date = localtime();
 print <<"END_OUTPUT";
 #ifndef MK1MF_BUILD
     /* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */
-    #define CFLAGS
+    #define CFLAGS cflags
     /*
      * Generate CFLAGS as an array of individual characters. This is a
      * workaround for the situation where CFLAGS gets too long for a C90 string
@@ -19,7 +19,7 @@ my $ctr = 0;
 foreach my $c (split //, $cflags) {
     # Max 18 characters per line
     if  (($ctr++ % 18) == 0) {
-        if ($ctr != 0) {
+        if ($ctr != 1) {
             print "\n";
         }
         print "        ";