This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix cmake-configure to accept "--prefix=<foo>" in addition to "--prefix <foo>" (see also Issue
#591
)
pull/603/head
Eric Haszlakiewicz
Björn Esser
5 years ago
parent
812d5e3903
commit
3a3ab6c7d8
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
cmake-configure
+ 3
- 0
cmake-configure
View File
@@ -52,6 +52,9 @@ while [ $# -gt 0 ] ; do
FLAGS+=(-DCMAKE_INSTALL_PREFIX="$2")
shift
;;
--prefix=*)
FLAGS+=(-DCMAKE_INSTALL_PREFIX="${1##--prefix=}")
;;
--enable-threading)
FLAGS+=(-DENABLE_THREADING=ON)
;;
Write
Preview
Loading…
Cancel
Save