From c66fe8a9a0a6b5106c94a4ce6eeda551275dc2bc Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 20 Dec 2009 23:26:42 +0100 Subject: [PATCH] version.h depends on config.status * libguile/Makefile.am (version.h): Depend on config.status, so if we reconfigure we make sure to regenerate the version. --- libguile/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/Makefile.am b/libguile/Makefile.am index 3e93a9819..6e3061f50 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -593,7 +593,7 @@ EXTRA_DIST = ChangeLog-scm ChangeLog-threads \ ## 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* -version.h: version.h.in +version.h: version.h.in $(top_builddir)/config.status sed < $(srcdir)/version.h.in > $@.tmp \ -e s:@-GUILE_MAJOR_VERSION-@:${GUILE_MAJOR_VERSION}: \ -e s:@-GUILE_MINOR_VERSION-@:${GUILE_MINOR_VERSION}: \