From db44e46946d7c47fc913f0c87df11e4c43f91804 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Sun, 4 Jan 2015 14:35:29 +0000 Subject: [PATCH] To be more portable let's use built in cross_compiling definitions... --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index abfe68f..c9b3a42 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ AC_SUBST(HAVE_LIBCLANG) # if cross compiling, disable NLS support. # It's not worth the trouble, at least for now. -if "${host}" != "${target}"; then +if test "x$cross_compiling" = xyes; then enable_nls=no fi