| commit | 4f1bbbe74f9dc2723bff6e1028d3aa6c3ca85b6d | [log] [tgz] |
|---|---|---|
| author | Wichert Akkerman <wichert@deephackmode.org> | Mon Jul 23 14:43:07 2001 +0000 |
| committer | Wichert Akkerman <wichert@deephackmode.org> | Mon Jul 23 14:43:07 2001 +0000 |
| tree | 2e8de2214508806ae6f8cd426756bcf8ca6c594f | |
| parent | 01250b2cc0168b5c63fad0fff9e8406c7733a226 [diff] [blame] |
Support cross-compiling between architectures
diff --git a/configure.in b/configure.in index dcac017..ed13615 100644 --- a/configure.in +++ b/configure.in
@@ -1,5 +1,5 @@ AC_INIT(strace.c) -AC_CANONICAL_HOST() +AC_CANONICAL_SYSTEM() AC_MSG_CHECKING(for supported operating system) changequote(,)dnl @@ -37,7 +37,7 @@ ' AC_MSG_CHECKING(for supported architecture) -case "$host_cpu" in +case "$target_cpu" in i[3456]86|pentium) arch=i386 ;;