Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
36fa4da3
Commit
36fa4da3
authored
Feb 01, 2024
by
Vibhav Pant
Committed by
Alexandre Julliard
Feb 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Correctly derive the target from CC if it's set to an absolute path.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56279
parent
9bca18e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
configure
configure
+2
-0
configure.ac
configure.ac
+2
-0
No files found.
configure
View file @
36fa4da3
...
...
@@ -10657,6 +10657,8 @@ then :
while
test
$#
-ge
1
do
case
"
$1
"
in
*
/
*
-gcc
)
target
=
`
expr
"
$1
"
:
'.*/\(.*\)-gcc'
`
;;
*
/
*
-clang
)
target
=
`
expr
"
$1
"
:
'.*/\(.*\)-clang'
`
;;
*
-gcc
)
target
=
`
expr
"
$1
"
:
'\(.*\)-gcc'
`
;;
*
-clang
)
target
=
`
expr
"
$1
"
:
'\(.*\)-clang'
`
;;
esac
...
...
configure.ac
View file @
36fa4da3
...
...
@@ -882,6 +882,8 @@ do
while test $# -ge 1
do
case "$1" in
*/*-gcc) target=`expr "$1" : '.*/\(.*\)-gcc'` ;;
*/*-clang) target=`expr "$1" : '.*/\(.*\)-clang'` ;;
*-gcc) target=`expr "$1" : '\(.*\)-gcc'` ;;
*-clang) target=`expr "$1" : '\(.*\)-clang'` ;;
esac
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment