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

Side by Side Diff: third_party/instrumented_libraries/scripts/autogen.sh

Issue 612153002: Instrumented libraries: support building on Ubuntu Trusty (part 1). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 # Sometimes there isn't a pre-generated configure script, and we must first run
7 # autogen.sh to generate it. Even if there is one, sometimes we need to
8 # re-generate it (in particular, the autoconf version on Trusty is newer than
9 # what is expected by pre-generated configure scripts in some packages).
10
11 # Unfortunately, we can't run autogen.sh unconditionally whenever it's present,
12 # as that sometimes breaks build. Which is why we have this file.
13
14 # Also, some packages may or may not have an autogen script, depending on
15 # version. Rather than clutter the GYP file with conditionals, we simply do
16 # nothing if the file is not present.
17
18 if [ -x ./autogen.sh ]
19 then
20 NOCONFIGURE=1 ./autogen.sh
21 fi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698