diff options
Diffstat (limited to 'ANDROID_3.4.5/scripts/kconfig/check.sh')
-rwxr-xr-x | ANDROID_3.4.5/scripts/kconfig/check.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ANDROID_3.4.5/scripts/kconfig/check.sh b/ANDROID_3.4.5/scripts/kconfig/check.sh deleted file mode 100755 index fa59cbf9..00000000 --- a/ANDROID_3.4.5/scripts/kconfig/check.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 - |