diff options
author | Andy Wingo <wingo@oblong.net> | 2009-04-21 12:41:19 +0200 |
---|---|---|
committer | Andy Wingo <wingo@oblong.net> | 2009-04-21 12:41:19 +0200 |
commit | d4876cb4133625d1cdddf044a1b434e292ee82d7 (patch) | |
tree | 38e4f705005077dc2328d907a53f782bf8e3e8e9 /examples | |
parent | 71d903c881e58a49806bb3af9c1ead507bc11ad4 (diff) |
distcheck fixen
* examples/Makefile.am: Fix the installed guile-config invocation to set
PKG_CONFIG_PATH.
* meta/Makefile.am (EXTRA_DIST): Dist the bin_SCRIPTS.
* meta/guile-config (pkg-config): Better error messages if pkg-config
invocation fails.
* meta/uninstalled-env.in (PATH): Now that guile-config and guile-tools
are not generated, make it the srcdir/meta instead of the builddir.
(Guile itself will be picked up from libguile.)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 1b995b521..873f34ce0 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -38,8 +38,8 @@ EXTRA_DIST = README ChangeLog-2008 check.test \ \ safe/README safe/safe safe/untrusted.scm safe/evil.scm -AM_CFLAGS = `$(bindir)/guile-config compile` -AM_LIBS = `$(bindir)/guile-config link` +AM_CFLAGS = `PKG_CONFIG_PATH=$(libdir)/pkgconfig $(bindir)/guile-config compile` +AM_LIBS = `PKG_CONFIG_PATH=$(libdir)/pkgconfig $(bindir)/guile-config link` box/box: box/box.o |