From 9f7c0362e26f62dc81769ab55a89e32c3c9a268d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 6 Aug 2023 01:07:46 +0200 Subject: Fix incorrect use of dvdread includes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems that the library has been designed for use includes in the form "#include " while we used includes without the "dvdread/" prefix. This caused that instead of using the standard path detected from pkg-config, the expected path had to be added to to -I flag. Signed-off-by: Slávek Banko --- k9devices/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'k9devices') diff --git a/k9devices/Makefile.am b/k9devices/Makefile.am index 1a7e663..59de2d4 100644 --- a/k9devices/Makefile.am +++ b/k9devices/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I/usr/include/dvdread -I$(top_srcdir)/libk9copy $(K3B_INCS) -I$(includedir) $(all_includes) +INCLUDES = -I$(top_srcdir)/libk9copy $(K3B_INCS) -I$(includedir) $(all_includes) METASOURCES = AUTO libk9devices_la_LDFLAGS = $(all_libraries) noinst_LTLIBRARIES = libk9devices.la -- cgit v1.2.1