diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-17 01:24:49 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-17 01:33:48 -0500 |
commit | 98520888b8d267d80c66da9012bd3fe2b34f5004 (patch) | |
tree | bf4bb4c7f873ba974ad14d1c2ce6c5154c6fe86b /src/test | |
parent | 151d9085b438a6c6bb50385c99f3f1969620114b (diff) |
src/test: disable for now to get a full build
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile.am | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index e1b33fb0ec..8dfb880d56 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -8,12 +8,17 @@ test_libudev_SOURCES = \ test-libudev.c test_libudev_LDADD = \ - libudev.la + $(top_srcdir)/src/libudev/libudev.la + +test_libudev_CPPFLAGS = \ + -I $(top_srcdir)/src/shared test_udev_SOURCES = \ - src/test/test-udev.c + test-udev.c + +test_udev_CPPFLAGS = \ + -I $(top_srcdir)/src/shared test_udev_LDADD = \ - libudev-core.la \ + $(top_srcdir)/src/udev/libudev-core.la \ $(SELINUX_LIBS) - |