summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Garrigues <bertrand.garrigues@laposte.net>2014-09-26 23:33:02 +0200
committerBertrand Garrigues <bertrand.garrigues@laposte.net>2014-09-26 23:33:02 +0200
commit028db2f459dbcc46875cea93c7f84c661b14c76f (patch)
treee9925342ad5e7a3e01a135a22465ae21dcd1b1cf
parent75d6973f11bf4080376a98013806db1f7f91c62d (diff)
downloadgroff-git-automake2.tar.gz
Bug fix: Missing dependency between defs.h and config.status.automake2
After a full build, if configure was re-invoked with a different prefix, defs.h was not regenerated and groff and other binaries not recompiled (thus still using the old prefix).
-rw-r--r--src/include/include.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/include.am b/src/include/include.am
index dc0ab66bb..a95a7cb72 100644
--- a/src/include/include.am
+++ b/src/include/include.am
@@ -1,6 +1,6 @@
nodist_noinst_HEADERS = defs.h
CLEANFILES += defs.h
-defs.h:
+defs.h: config.status
@$(SHELL) $(top_srcdir)/gendef.sh defs.h \
"PROG_PREFIX=\"$(g)\"" \
"DEVICE=\"$(DEVICE)\"" \