1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* Makefile.in (install): install scmconfig.h from the current

directory, not $(srcdir).
This commit is contained in:
Gary Houston 1996-09-06 00:26:48 +00:00
parent b4309c3c5a
commit cceac91b8b
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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