Mirroring from commit 106549a4362f6b499da522f8f8f5ed9f98388f87 from Coreboot upstream

This commit is contained in:
2026-02-17 08:55:05 +10:00
commit 5e919b3ee7
279 changed files with 89283 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
# Needed for systems without gettext
$* -x c -o /dev/null - > /dev/null 2>&1 << EOF
#include <libintl.h>
int main()
{
gettext("");
return 0;
}
EOF
if [ ! "$?" -eq "0" ]; then
echo -DKBUILD_NO_NLS;
fi