From 9db4d0460f70a86a2c005756d906ef0b8491d85a Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 8 Oct 2015 11:41:28 +0100 Subject: [PATCH] build: Fix make distcheck srcdir may not be the same as builddir, so use the correct variable for the include path. Signed-off-by: Arun Raghavan Signed-off-by: Vinod Koul --- src/lib/Makefile.am | 2 +- src/utils/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 6f900ac..4baeab5 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -2,4 +2,4 @@ tinycompressdir = $(libdir) tinycompress_LTLIBRARIES = libtinycompress.la libtinycompress_la_SOURCES = compress.c -libtinycompress_la_CFLAGS = -I $(top_builddir)/include +libtinycompress_la_CFLAGS = -I$(top_srcdir)/include diff --git a/src/utils/Makefile.am b/src/utils/Makefile.am index 6a89c45..5f685e3 100644 --- a/src/utils/Makefile.am +++ b/src/utils/Makefile.am @@ -3,8 +3,8 @@ bin_PROGRAMS = cplay crecord cplay_SOURCES = cplay.c crecord_SOURCES = crec.c -cplay_CFLAGS = -I$(top_builddir)/include -crecord_CFLAGS = -I$(top_builddir)/include +cplay_CFLAGS = -I$(top_srcdir)/include +crecord_CFLAGS = -I$(top_srcdir)/include cplay_LDADD = $(top_builddir)/src/lib/libtinycompress.la -- 2.47.3