From cceac91b8b8356ede44b8230813ee023da297a8d Mon Sep 17 00:00:00 2001 From: Gary Houston Date: Fri, 6 Sep 1996 00:26:48 +0000 Subject: [PATCH] * Makefile.in (install): install scmconfig.h from the current directory, not $(srcdir). --- libguile/ChangeLog | 5 +++++ libguile/Makefile.in | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 06d7b4282..165895cc9 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 5 22:40:06 1996 Gary Houston + + * Makefile.in (install): install scmconfig.h from the current + directory, not $(srcdir). + Thu Sep 5 11:38:07 1996 Jim Blandy * Makefile.in (.c.x): Simplify; there's no need to run this rule diff --git a/libguile/Makefile.in b/libguile/Makefile.in index ad6c8105b..4dd0d254b 100644 --- a/libguile/Makefile.in +++ b/libguile/Makefile.in @@ -434,7 +434,8 @@ install: all for h in $(installed_h_files); do \ $(INSTALL_DATA) $(srcdir)/$$h $(includedir); \ done - for h in scmconfig.h $(inner_h_files); do \ + $(INSTALL_DATA) scmconfig.h $(innerincludedir) + for h in $(inner_h_files); do \ $(INSTALL_DATA) $(srcdir)/$$h $(innerincludedir); \ done