summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-08-01 14:07:00 -0700
committerMatt Turner <mattst88@gmail.com>2012-08-14 10:54:39 -0700
commit2191a79b4e66be0fd31371989505eec63b07899d (patch)
tree3ec0db5bc22d19f6070d618d637463841112274d /src
parente939250b63f70c671b5d7654b6b326237b1e353e (diff)
build: Fix gtest out-of-tree build
Introduced by 3d000e7dd. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src')
-rw-r--r--src/gtest/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtest/Makefile.am b/src/gtest/Makefile.am
index 3824d712075..7defa342d05 100644
--- a/src/gtest/Makefile.am
+++ b/src/gtest/Makefile.am
@@ -19,8 +19,8 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
-AM_CFLAGS = $(DEFINES) -I$(top_builddir)/src/gtest/include
-AM_CXXFLAGS = $(DEFINES) -I$(top_builddir)/src/gtest/include
+AM_CFLAGS = $(DEFINES) -I$(top_srcdir)/src/gtest/include
+AM_CXXFLAGS = $(DEFINES) -I$(top_srcdir)/src/gtest/include
noinst_LTLIBRARIES = libgtest.la