diff options
author | Matt Turner <mattst88@gmail.com> | 2012-08-01 14:07:00 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2012-08-14 10:54:39 -0700 |
commit | 2191a79b4e66be0fd31371989505eec63b07899d (patch) | |
tree | 3ec0db5bc22d19f6070d618d637463841112274d /src/gtest | |
parent | e939250b63f70c671b5d7654b6b326237b1e353e (diff) |
build: Fix gtest out-of-tree build
Introduced by 3d000e7dd.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/gtest')
-rw-r--r-- | src/gtest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtest/Makefile.am b/src/gtest/Makefile.am index 3824d71207..7defa342d0 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 |