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
8142caab
Commit
8142caab
authored
Aug 08, 2017
by
Matthias Vallentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure proper quoting of shell variables
parent
80b58951
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
configure
configure
+5
-5
No files found.
configure
View file @
8142caab
...
@@ -229,7 +229,7 @@ while [ $# -ne 0 ]; do
...
@@ -229,7 +229,7 @@ while [ $# -ne 0 ]; do
CMakeGenerator
=
"
$optarg
"
CMakeGenerator
=
"
$optarg
"
;;
;;
--prefix
=
*
)
--prefix
=
*
)
append_cache_entry CMAKE_INSTALL_PREFIX PATH
$optarg
append_cache_entry CMAKE_INSTALL_PREFIX PATH
"
$optarg
"
;;
;;
--with-runtime-checks
)
--with-runtime-checks
)
append_cache_entry CAF_ENABLE_RUNTIME_CHECKS BOOL
yes
append_cache_entry CAF_ENABLE_RUNTIME_CHECKS BOOL
yes
...
@@ -300,19 +300,19 @@ while [ $# -ne 0 ]; do
...
@@ -300,19 +300,19 @@ while [ $# -ne 0 ]; do
esac
esac
;;
;;
--with-clang
=
*
)
--with-clang
=
*
)
clang
=
$optarg
clang
=
"
$optarg
"
;;
;;
--with-gcc
=
*
)
--with-gcc
=
*
)
gcc
=
$optarg
gcc
=
"
$optarg
"
;;
;;
--with-qt-prefix
=
*
)
--with-qt-prefix
=
*
)
append_cache_entry CAF_QT_PREFIX_PATH STRING
"
$optarg
"
append_cache_entry CAF_QT_PREFIX_PATH STRING
"
$optarg
"
;;
;;
--with-openssl
=
*
)
--with-openssl
=
*
)
append_cache_entry OPENSSL_ROOT_DIR PATH
$optarg
append_cache_entry OPENSSL_ROOT_DIR PATH
"
$optarg
"
;;
;;
--build-type
=
*
)
--build-type
=
*
)
append_cache_entry CMAKE_BUILD_TYPE STRING
$optarg
append_cache_entry CMAKE_BUILD_TYPE STRING
"
$optarg
"
;;
;;
--build-dir
=
*
)
--build-dir
=
*
)
builddir
=
"
$optarg
"
builddir
=
"
$optarg
"
...
...
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