[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] GNU Guile branch, master, updated. release_1-9-3-37-gf60
From: |
Neil Jerram |
Subject: |
[Guile-commits] GNU Guile branch, master, updated. release_1-9-3-37-gf60e892 |
Date: |
Fri, 25 Sep 2009 19:18:57 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=f60e892819b91dbd0f352cc22a9e1feee70216c6
The branch, master has been updated
via f60e892819b91dbd0f352cc22a9e1feee70216c6 (commit)
from b8fc11d28731e13a5aa08863dfc36cc79fda4923 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f60e892819b91dbd0f352cc22a9e1feee70216c6
Author: Neil Jerram <address@hidden>
Date: Fri Sep 25 20:18:34 2009 +0100
Fix make distcheck by looking for guile-config in $(srcdir)
make distcheck is currently failing for me with:
In file included from /usr/local/include/libguile/threads.h:35,
from /usr/local/include/libguile/async.h:28,
from /usr/local/include/libguile.h:37,
from ../../examples/box/box.c:22:
/usr/local/include/libguile/pthread-threads.h:33:31: error:
libguile/boehm-gc.h: No such file or directory
In file included from /usr/local/include/libguile.h:93,
from ../../examples/box/box.c:22:
- which is because it's picking up a load of installed headers,
instead of those in the _inst tree
- which is because there is no output from the preceding guile-config
invocation:
PATH=/home/neil/SW/Guile/ovnight/guile-master-20090924/_inst/bin:$PATH
PKG_CONFIG_PATH=/home/neil/SW/Guile/ovnight/guile-master-20090924/_inst/lib/pkgconfig
/home/neil/SW/Guile/ovnight/guile-master-20090924/_inst/bin/guile-config
compile
- which is because .../_inst/bin/guile-config is empty
- which is because the rule in meta/Makefile.am that generates
guile-config is missing $(srcdir), and so doesn't find
guile-config.in.
* meta/Makefile.am (guile-config): Look for guile-config.in in
$(srcdir).
-----------------------------------------------------------------------
Summary of changes:
meta/Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/Makefile.am b/meta/Makefile.am
index 8933287..d75f1b5 100644
--- a/meta/Makefile.am
+++ b/meta/Makefile.am
@@ -34,9 +34,9 @@ pkgconfig_DATA = guile-2.0.pc
aclocaldir = $(datadir)/aclocal
aclocal_DATA = guile.m4
-guile-config: guile-config.in
+guile-config: $(srcdir)/guile-config.in
guile="@bindir@/`echo guile | $(SED) -e '$(program_transform_name)'`" ;
\
- cat guile-config.in
\
+ cat $(srcdir)/guile-config.in
\
| $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g ;
\
s,@""PKG_CONFIG@,$(PKG_CONFIG),g ;
\
s,@installed_guile@,$$guile,g"
\
hooks/post-receive
--
GNU Guile
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] GNU Guile branch, master, updated. release_1-9-3-37-gf60e892,
Neil Jerram <=