diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2013-02-05 08:26:36 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-05 15:22:19 +0000 |
commit | 98cae0544884cb5700d42409ec4a9584a17dc9a4 (patch) | |
tree | be8dad3e272fe1c75cb1179f03dbe2a5bcf0f492 /scripts/crosstap | |
parent | 09934f38df057e12af7d14791f7ab752e81093db (diff) | |
download | openembedded-core-contrib-98cae0544884cb5700d42409ec4a9584a17dc9a4.tar.gz |
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]
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/crosstap')
-rwxr-xr-x | scripts/crosstap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/crosstap b/scripts/crosstap index 783bf2ffbee..58317cf91cc 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*) |