summaryrefslogtreecommitdiff
path: root/kconfig/check-gettext.sh
diff options
context:
space:
mode:
Diffstat (limited to 'kconfig/check-gettext.sh')
-rw-r--r--kconfig/check-gettext.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/kconfig/check-gettext.sh b/kconfig/check-gettext.sh
deleted file mode 100644
index fa59cbf..0000000
--- a/kconfig/check-gettext.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-# Needed for systems without gettext
-$* -xc -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
-