]> git.saurik.com Git - apt.git/commitdiff
do not require installed libapt-pkg-dev for gtest
authorDavid Kalnischkies <david@kalnischkies.de>
Tue, 28 Apr 2015 13:06:12 +0000 (15:06 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Mon, 11 May 2015 15:22:32 +0000 (17:22 +0200)
Git-Dch: Ignore

test/libapt/makefile

index 0f8df291fcaa30a279f79ecbe62c994ec706a738..61a8aaf317341b6f82986c603b06e7713a4e5dbd 100644 (file)
@@ -8,7 +8,7 @@ APT_DOMAIN=none
 include ../../buildlib/defaults.mak
 
 .PHONY: test
-ifeq (file-okay,$(shell $(CC) -M gtest_runner.cc >/dev/null 2>&1 && echo 'file-okay'))
+ifeq (file-okay,$(shell $(CC) -I $(BASE)/build/include -M gtest_runner.cc >/dev/null 2>&1 && echo 'file-okay'))
 test: $(BIN)/gtest$(BASENAME)
        MALLOC_PERTURB_=21 MALLOC_CHECK_=2 LD_LIBRARY_PATH=$(LIB) $(BIN)/gtest$(BASENAME)
 
@@ -78,5 +78,6 @@ test:
        @echo "APT uses Googles C++ testing framework for its unit tests"
        @echo "On Debian systems this is available in the 'libgtest-dev' package."
        @echo "Please install it before attempting to run the unit tests."
+       $(CC) -I $(BASE)/build/include -M gtest_runner.cc
        exit 100
 endif