Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
e1d3ca68
Commit
e1d3ca68
authored
Apr 23, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use more portable syntax in configure script
parent
e04e53f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
configure
configure
+10
-7
No files found.
configure
View file @
e1d3ca68
...
@@ -93,13 +93,16 @@ configure ()
...
@@ -93,13 +93,16 @@ configure ()
append_cache_entry CMAKE_CXX_COMPILER FILEPATH
$1
append_cache_entry CMAKE_CXX_COMPILER FILEPATH
$1
fi
fi
if
[[
"
$builddir
"
=
/
*
]]
;
then
case
"
$builddir
"
in
# absolute path given
/
*
)
absolute_builddir
=
"
$builddir
"
#absolute path given
else
absolute_builddir
=
"
$builddir
"
# relative path given; convert to absolute path
;;
absolute_builddir
=
"
$(
pwd
)
/
$builddir
"
*
)
fi
# relative path given; convert to absolute path
absolute_builddir
=
"
$(
pwd
)
/
$builddir
"
;;
esac
if
[
-n
"
$2
"
]
;
then
if
[
-n
"
$2
"
]
;
then
workdir
=
"
$absolute_builddir
-
$2
"
workdir
=
"
$absolute_builddir
-
$2
"
...
...
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