ci: get rid of no-asm flag to m68k cross compiles
[openssl.git] / util / fips-checksums.sh
index 99f34fbc8f37d5a162c4e92ab4975a2e6519023f..aff8d0ccce636482d52bcc4ace9f1262c591057e 100755 (executable)
@@ -8,10 +8,10 @@ for f in "$@"; do
     # the '*stdin' marker to the filename preceded by a space.  See the
     # sha1sum manual for a specification of the format.
     case "$f" in
-        *.c | *.)
+        *.c | *.c.in | *.h | *.h.in | *.inc)
             cat "$f" \
                 | $HERE/lang-compress.pl 'C' \
-                | unifdef -DFIPS_MODE=1 \
+                | unifdef -DFIPS_MODULE=1 \
                 | openssl sha256 -r \
                 | sed -e "s| \\*stdin|  $f|"
             ;;