diff options
author | benchan@chromium.org <benchan@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-04-03 17:11:12 +0000 |
---|---|---|
committer | benchan@chromium.org <benchan@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-04-03 17:11:12 +0000 |
commit | a9d27c5ea0d3b57c46370de99fd777002c6d0fd9 (patch) | |
tree | 114c4d7d7af15e1df9f9475235ecc290803a51d8 | |
parent | Changes to get the breakpad client compiling and running on Android using (diff) | |
download | breakpad-a9d27c5ea0d3b57c46370de99fd777002c6d0fd9.tar.xz |
Add missing log.o dependency to linux_client_unittest target.
r945 introduced src/client/linux/log/log.c, which is used in
exception_handler.cc, and thus should be added as a dependency
in the linux_client_unittest target.
TEST=Compile and run unit tests on Linux.
Review URL: https://breakpad.appspot.com/373001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@946 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | Makefile.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index ea6368c8..8d80a081 100644 --- a/Makefile.am +++ b/Makefile.am @@ -314,6 +314,7 @@ src_client_linux_linux_client_unittest_CPPFLAGS = \ -I$(top_srcdir)/src/testing src_client_linux_linux_client_unittest_LDADD = \ src/client/linux/handler/exception_handler.o \ + src/client/linux/log/log.o \ src/client/linux/crash_generation/crash_generation_client.o \ src/client/linux/minidump_writer/linux_dumper.o \ src/client/linux/minidump_writer/linux_core_dumper.o \ diff --git a/Makefile.in b/Makefile.in index d07975b8..bc9ef028 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1401,6 +1401,7 @@ TESTS_ENVIRONMENT = @LINUX_HOST_TRUE@src_client_linux_linux_client_unittest_LDADD = \ @LINUX_HOST_TRUE@ src/client/linux/handler/exception_handler.o \ +@LINUX_HOST_TRUE@ src/client/linux/log/log.o \ @LINUX_HOST_TRUE@ src/client/linux/crash_generation/crash_generation_client.o \ @LINUX_HOST_TRUE@ src/client/linux/minidump_writer/linux_dumper.o \ @LINUX_HOST_TRUE@ src/client/linux/minidump_writer/linux_core_dumper.o \ |