projects
/
platform
/
upstream
/
openblas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b09cc3b
)
Updated CROSS_SUFFIX regex to work with CC containing arguments
author
Paul MUSTIÈRE
<paul.mustiere@gmail.com>
Wed, 14 Sep 2016 18:42:22 +0000
(11:42 -0700)
committer
Paul MUSTIÈRE
<paul.mustiere@gmail.com>
Wed, 14 Sep 2016 18:42:22 +0000
(11:42 -0700)
c_check
patch
|
blob
|
history
diff --git
a/c_check
b/c_check
index 2ec9fc484bb56477b31abeb2b8faa80f6bbece20..371dbf615636c987a73d6ccf740b29cef312ee6e 100644
(file)
--- a/
c_check
+++ b/
c_check
@@
-34,7
+34,7
@@
if (dirname($compiler_name) ne ".") {
$cross_suffix .= dirname($compiler_name) . "/";
}
-if (basename($compiler_name) =~ /(
.
*-)(.*)/) {
+if (basename($compiler_name) =~ /(
[^\s]
*-)(.*)/) {
$cross_suffix .= $1;
}