Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
3af70545
Commit
3af70545
authored
Oct 13, 2015
by
Feng Xiao
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #878 from matthewvalimaki/autogen-options
Add support for arguments.
parents
b699c285
c0a7ea4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
autogen.sh
autogen.sh
+13
-1
No files found.
autogen.sh
View file @
3af70545
...
...
@@ -6,6 +6,18 @@
set
-e
if
[
!
-z
"
$@
"
]
;
then
for
argument
in
"
$@
"
;
do
case
$argument
in
# make curl silent
"-s"
)
curlopts
=
"-s"
;;
esac
done
fi
# Check that we're being run from the right directory.
if
test
!
-f
src/google/protobuf/stubs/common.h
;
then
cat
>
&2
<<
__EOF__
...
...
@@ -19,7 +31,7 @@ fi
# directory is set up as an SVN external.
if
test
!
-e
gmock
;
then
echo
"Google Mock not present. Fetching gmock-1.7.0 from the web..."
curl
-O
https://googlemock.googlecode.com/files/gmock-1.7.0.zip
curl
$curlopts
-O
https://googlemock.googlecode.com/files/gmock-1.7.0.zip
unzip
-q
gmock-1.7.0.zip
rm
gmock-1.7.0.zip
mv
gmock-1.7.0 gmock
...
...
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