patches/strace/4.5.15/160-superh-update.ac.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Sep 07 01:22:37 2011 +0200 (2011-09-07)
changeset 2653 e5fc5c9ea78a
parent 746 b150d6f590fc
permissions -rw-r--r--
scripts: fix sysroot prefix dir

The sysroot prefix dir was broken in #4960f5d9f829 due to a mishap
when making the out-of-sysroot lib/ symlink: the './' was mistakenly
changed into a single '.' .

Although Jonathan suggested restoring the missing '/' to restore it to
normal operation, I prefered using an explicit pushd/popd to be extra
sure of the symlink location and target, along with a fix in the sysroot
relative directory calculation.

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