patches/strace/4.5.16/150-superh-update.ac.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jan 28 22:06:49 2011 +0100 (2011-01-28)
changeset 2284 7ede374110e5
parent 746 b150d6f590fc
permissions -rw-r--r--
config: add an option not to remove the destination directory

In certain circumstances, removing the destination/installation directory
is a bad idea. For example, when the build environment is already taking
care of sanitising the build tree, and pre-installs stuff in there, it is
a very bad idea to remove the destination directory.

This happens now in buildroot, as the crostool-NG backend now installs the
toolchain in the common host-tools directory, and pre-install there a few
host-utilities (eg. host-automake and host-gawk).

Provide a config knob to turn on/off the removal of the destination
directory, defaulting to 'y' (previous behavior), and forced to 'n' when
used as a backend.

Reported-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@428
     1
diff -dur strace-4.5.16.orig/configure.ac strace-4.5.16/configure.ac
yann@428
     2
--- strace-4.5.16.orig/configure.ac	2007-07-14 19:25:25.000000000 +0200
yann@428
     3
+++ strace-4.5.16/configure.ac	2007-07-14 19:27:35.000000000 +0200
yann@428
     4
@@ -91,14 +91,14 @@
yann@428
     5
 	arch=hppa
yann@428
     6
 	AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
yann@428
     7
 	;;
yann@428
     8
-sh)
yann@428
     9
-	arch=sh
yann@428
    10
-	AC_DEFINE([SH], 1, [Define for the SH architecture.])
yann@428
    11
-	;;
yann@428
    12
 sh64)
yann@428
    13
 	arch=sh64
yann@428
    14
 	AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
yann@428
    15
 	;;
yann@428
    16
+sh*)
yann@428
    17
+	arch=sh
yann@428
    18
+	AC_DEFINE([SH], 1, [Define for the SH architecture.])
yann@428
    19
+	;;
yann@428
    20
 x86?64*)
yann@428
    21
 	arch=x86_64
yann@428
    22
 	AC_DEFINE([X86_64], 1, [Define for the AMD x86-64 architecture.])