diff options
author | Eric Anholt <eric@anholt.net> | 2012-04-13 09:59:00 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2012-04-16 11:25:39 -0700 |
commit | 9d921b168b1bfe03b602922ab93482babc0bd3f4 (patch) | |
tree | 5f0a0e9b925b5973dc30890cccf751516f6a0aff /src/gtest | |
parent | 6f89f5a524b3c385c6b13565cdc3f04a2ad69cec (diff) |
gtest: Don't actually install a library.
The whole point of importing it was that you're not supposed to
install this library.
Reviewed-by: Matt Turner <mattst88@gmail.com>
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=411825
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/gtest')
-rw-r--r-- | src/gtest/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtest/Makefile.am b/src/gtest/Makefile.am index 149de6e3d7..3824d71207 100644 --- a/src/gtest/Makefile.am +++ b/src/gtest/Makefile.am @@ -22,7 +22,7 @@ AM_CFLAGS = $(DEFINES) -I$(top_builddir)/src/gtest/include AM_CXXFLAGS = $(DEFINES) -I$(top_builddir)/src/gtest/include -lib_LTLIBRARIES = libgtest.la +noinst_LTLIBRARIES = libgtest.la libgtest_la_SOURCES = \ src/gtest-all.cc \ |