From 6bc93e3b6e3d2aad07b9223546efae9638eb53a8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 29 Apr 2005 02:10:36 +0000 Subject: [PATCH] remove AC_CANONICAL_TARGET and use $host* variables instead of $target* variables since thats how it works SVN revision: 14462 --- configure.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 966022cb7..41e5db23a 100644 --- a/configure.in +++ b/configure.in @@ -6,7 +6,6 @@ rm -f config.cache AC_INIT(configure.in) AC_CANONICAL_BUILD AC_CANONICAL_HOST -AC_CANONICAL_TARGET AC_ISC_POSIX AM_INIT_AUTOMAKE(enlightenment, 0.16.999.005) AM_CONFIG_HEADER(config.h) @@ -23,7 +22,7 @@ AC_C___ATTRIBUTE__ AC_CHECK_FUNCS(setenv) AC_CHECK_FUNCS(unsetenv) -MODULE_ARCH="$target_os-$target_cpu" +MODULE_ARCH="$host_os-$host_cpu" AC_SUBST(MODULE_ARCH) AC_DEFINE_UNQUOTED(MODULE_ARCH, "$MODULE_ARCH", "Module architecture")