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
Default autogen.sh to not running configure, unless some command line options are specified.
tags/json-c-0.11-20130402
Eric Haszlakiewicz
13 years ago
parent
77c6239465
commit
8fcfeb63ec
1 changed files
with
9 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-1
autogen.sh
+ 9
- 1
autogen.sh
View File
@@ -1,5 +1,13 @@
#!/bin/sh
autoreconf -v --install || exit 1
if test -z "$NOCONFIGURE"; then
# If there are any options, assume the user wants to run configure.
# To run configure w/o any options, use ./autogen.sh --configure
if [ $# -gt 0 ] ; then
case "$1" in
--conf*)
shift 1
;;
esac
exec ./configure "$@"
fi
Write
Preview
Loading…
Cancel
Save