diff mbox

[tinycompress] build: Fix make distcheck

Message ID 1444300888-30059-1-git-send-email-arun@accosted.net (mailing list archive)
State New, archived
Headers show

Commit Message

arun@accosted.net Oct. 8, 2015, 10:41 a.m. UTC
From: Arun Raghavan <git@arunraghavan.net>

srcdir may not be the same as builddir, so use the correct variable for
the include path.
---
 src/lib/Makefile.am   | 2 +-
 src/utils/Makefile.am | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Comments

Vinod Koul Oct. 8, 2015, 11:07 a.m. UTC | #1
On Thu, 2015-10-08 at 11:41 +0100, arun@accosted.net wrote:
> From: Arun Raghavan <git@arunraghavan.net>
> 
> srcdir may not be the same as builddir, so use the correct variable for
> the include path.

Applied, thanks
diff mbox

Patch

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