guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 03/03: Fix in-tree builds


From: Andy Wingo
Subject: [Guile-commits] 03/03: Fix in-tree builds
Date: Thu, 23 Aug 2018 04:49:14 -0400 (EDT)

wingo pushed a commit to branch lightning
in repository guile.

commit 065efdd1016f7de8b1703e0423c638f68c202ae2
Author: Andy Wingo <address@hidden>
Date:   Thu Aug 23 10:47:00 2018 +0200

    Fix in-tree builds
    
    * libguile/Makefile.am (AM_CPPFLAGS): Use -iquote for $(builddir)
      instead of -I, to avoid having in-tree builds find libguile/poll.h for
      <poll.h>.
---
 libguile/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/Makefile.am b/libguile/Makefile.am
index dd45d1e..6384fa5 100644
--- a/libguile/Makefile.am
+++ b/libguile/Makefile.am
@@ -37,7 +37,7 @@ DEFAULT_INCLUDES =
 ## <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
 ## building.  Also look for Gnulib headers in `lib'.
 AM_CPPFLAGS = -DBUILDING_LIBGUILE=1 -I$(top_srcdir) -I$(top_builddir) \
-             -I$(top_srcdir)/lib -I$(top_builddir)/lib -I$(builddir) \
+             -I$(top_srcdir)/lib -I$(top_builddir)/lib -iquote$(builddir) \
              $(LIBFFI_CFLAGS)
 
 if ENABLE_JIT



reply via email to

[Prev in Thread] Current Thread [Next in Thread]