diff options
author | Emmanuel Benoît <tseeker@nocternity.net> | 2015-01-20 09:12:39 +0100 |
---|---|---|
committer | Emmanuel Benoît <tseeker@nocternity.net> | 2015-01-21 16:43:47 +0100 |
commit | edc8d804284ad9c266b796bd0175d0f1723db705 (patch) | |
tree | ea49a3e768be3a952efaea2d2adcbe9dfe5a4a8a /src/ata_id | |
parent | 877de5b8ee5584091c8c10476878324a44467f73 (diff) |
src/ata_id/Makefile.am: Fixed compilation error
It is necessary to include src/udev to the include path, because
ata_id.c includes src/shared/udev-util.h which itself includes
src/udev/udev.h
Diffstat (limited to 'src/ata_id')
-rw-r--r-- | src/ata_id/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ata_id/Makefile.am b/src/ata_id/Makefile.am index 2dca2c1257..01acbbafe3 100644 --- a/src/ata_id/Makefile.am +++ b/src/ata_id/Makefile.am @@ -2,6 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} AM_CPPFLAGS = \ -I $(top_srcdir)/src/shared \ + -I $(top_srcdir)/src/udev \ -I $(top_srcdir)/src/libudev udevlibexec_PROGRAMS = \ |