summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Houston <ghouston@arglist.com>1996-09-06 00:26:48 +0000
committerGary Houston <ghouston@arglist.com>1996-09-06 00:26:48 +0000
commitcceac91b8b8356ede44b8230813ee023da297a8d (patch)
tree626b6b4f77a56c427c64289e48f5620995e1e474
parentb4309c3c5aaaf14b91c9adbec5a668e7013774fe (diff)
downloadguile-cceac91b8b8356ede44b8230813ee023da297a8d.tar.gz
* Makefile.in (install): install scmconfig.h from the current
directory, not $(srcdir).
-rw-r--r--libguile/ChangeLog5
-rw-r--r--libguile/Makefile.in3
2 files changed, 7 insertions, 1 deletions
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 <ghouston@actrix.gen.nz>
+
+ * Makefile.in (install): install scmconfig.h from the current
+ directory, not $(srcdir).
+
Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
* 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