mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 08:04:49 +01:00
'make binrpm-pkg' throws me this error, with Python 3.9:
*** Error compiling '.../gen-hash-testvecs.py'...
File ".../scripts/crypto/gen-hash-testvecs.py", line 121
return f'{alg.upper().replace('-', '_')}_DIGEST_SIZE'
^
SyntaxError: f-string: unmatched '('
Old python versions, presumably <= 3.11, can't resolve these quotes.
Fix it with double quotes for compatibility.
Fixes:
|
||
|---|---|---|
| .. | ||
| gen-fips-testvecs.py | ||
| gen-hash-testvecs.py | ||