]> granicus.if.org Git - strace/commitdiff
Support cross-compiling between architectures
authorWichert Akkerman <wichert@deephackmode.org>
Mon, 23 Jul 2001 14:43:07 +0000 (14:43 +0000)
committerWichert Akkerman <wichert@deephackmode.org>
Mon, 23 Jul 2001 14:43:07 +0000 (14:43 +0000)
ChangeLog
configure.in

index f4e1cfc22d191e607aa04669de67c1cbb9215ba8..6d555ce31a51cb4e317a3805f4d74d5e311237c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-23  Wichert Akkerman <wakkerma@debian.org>
+
+  * configure.in: Support cross-compiling between architectures
+
 2001-07-13  Wichert Akkerman <wakkerma@debian.org>
 
   * configure.in: add S390 to architecture list
index dcac0172c66a4cd59be750b99dddaaf690b973cd..ed13615b00fd88ef3f1b5415a06e22e33fe2aafe 100644 (file)
@@ -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 @@ opsys_list='
 '
 
 AC_MSG_CHECKING(for supported architecture)
-case "$host_cpu" in
+case "$target_cpu" in
 i[3456]86|pentium)
        arch=i386
        ;;