Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/protobuf/autogen.sh

Issue 1322483002: Revert https://codereview.chromium.org/1291903002 (protobuf roll). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/protobuf/appveyor.yml ('k') | third_party/protobuf/benchmarks/ProtoBench.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # Run this script to generate the configure script and other files that will
4 # be included in the distribution. These files are not checked in because they
5 # are automatically generated.
6
7 set -e
8
9 # Check that we're being run from the right directory.
10 if test ! -f src/google/protobuf/stubs/common.h; then
11 cat >&2 << __EOF__
12 Could not find source code. Make sure you are running this script from the
13 root of the distribution tree.
14 __EOF__
15 exit 1
16 fi
17
18 # Check that gmock is present. Usually it is already there since the
19 # directory is set up as an SVN external.
20 if test ! -e gmock; then
21 echo "Google Mock not present. Fetching gmock-1.7.0 from the web..."
22 curl -O https://googlemock.googlecode.com/files/gmock-1.7.0.zip
23 unzip -q gmock-1.7.0.zip
24 rm gmock-1.7.0.zip
25 mv gmock-1.7.0 gmock
26 fi
27
28 set -ex
29
30 # TODO(kenton): Remove the ",no-obsolete" part and fix the resulting warnings.
31 autoreconf -f -i -Wall,no-obsolete
32
33 rm -rf autom4te.cache config.h.in~
34 exit 0
OLDNEW
« no previous file with comments | « third_party/protobuf/appveyor.yml ('k') | third_party/protobuf/benchmarks/ProtoBench.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698