From e1ec61dd916af2d64a9213a6aaf59ccd18021962 Mon Sep 17 00:00:00 2001 From: Tom Zanussi Date: Tue, 5 Feb 2013 08:26:36 -0600 Subject: crosstap: handle hyphenated x86_64 target arch systemtap_target_arch() should also translate x86-64 (hyphenated) into x86_64 for the -a param. Failing to do that causes systemtap to see an architecture mismatch and create a cloned session with a bogusly synthesized build directory path, and fails to compile the probe. Fixes [YOCTO #3756] (From OE-Core rev: d1d5cc19cb397ea3105578c3267fd86e0e8b7f55) Signed-off-by: Tom Zanussi Signed-off-by: Richard Purdie --- scripts/crosstap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/crosstap b/scripts/crosstap index 783bf2ffbe..58317cf91c 100755 --- a/scripts/crosstap +++ b/scripts/crosstap @@ -70,7 +70,7 @@ function systemtap_target_arch() { i?86) SYSTEMTAP_TARGET_ARCH="i386" ;; - x86_64*) + x86?64*) SYSTEMTAP_TARGET_ARCH="x86_64" ;; arm*) -- cgit v1.2.3-54-g00ecf