diff options
author | Gary Houston <ghouston@arglist.com> | 2001-05-28 21:14:31 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2001-05-28 21:14:31 +0000 |
commit | a8ca715359bc9f6a6a26a538baabe03a8ca13494 (patch) | |
tree | ba203791c75b8f57f04a6a4a1b60a0b5abc0b55a | |
parent | 8d09eb04493a7a3e6ab57cd8d3c1ef7da917b41d (diff) | |
download | guile-a8ca715359bc9f6a6a26a538baabe03a8ca13494.tar.gz |
* Makefile.am: let guile-config depend on libguile/libpath.h,
so that it will be rebuilt if configure --prefix changes.
-rw-r--r-- | guile-config/ChangeLog | 5 | ||||
-rw-r--r-- | guile-config/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/guile-config/ChangeLog b/guile-config/ChangeLog index ac7fa0ef0..f163f4ffe 100644 --- a/guile-config/ChangeLog +++ b/guile-config/ChangeLog @@ -1,3 +1,8 @@ +2001-05-28 Gary Houston <ghouston@arglist.com> + + * Makefile.am: let guile-config depend on libguile/libpath.h, + so that it will be rebuilt if configure --prefix changes. + 2001-03-07 Mikael Djurfeldt <mdj@linnaeus.mit.edu> * guile-config.in (build-link): Really reverted the change of diff --git a/guile-config/Makefile.am b/guile-config/Makefile.am index a0c0e29d2..7a39b5c12 100644 --- a/guile-config/Makefile.am +++ b/guile-config/Makefile.am @@ -32,7 +32,7 @@ aclocal_DATA = guile.m4 ## We use @-...-@ as the substitution brackets here, instead of the ## usual @...@, so autoconf doesn't go and substitute the values ## directly into the left-hand sides of the sed substitutions. *sigh* -guile-config: guile-config.in +guile-config: guile-config.in ${top_builddir}/libguile/libpath.h rm -f guile-config.tmp sed < ${srcdir}/guile-config.in > guile-config.tmp \ -e s:@-bindir-@:${bindir}: \ |