From: Matt Birkholz Date: Sun, 29 May 2016 08:37:12 +0000 (-0700) Subject: runtime/Makefile-fragment: Install runtime/optiondb.scm. X-Git-Tag: mit-scheme-pucked-9.2.12~261^2~36 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5b3b578c11512d0e615367bd91f3d169773d480c;p=mit-scheme.git runtime/Makefile-fragment: Install runtime/optiondb.scm. Install runtime/optiondb.SCM so that standard-load-options can find it when searching the library path. --- diff --git a/src/runtime/Makefile-fragment b/src/runtime/Makefile-fragment index 12885f821..e39b9958b 100644 --- a/src/runtime/Makefile-fragment +++ b/src/runtime/Makefile-fragment @@ -1,11 +1,11 @@ RUNDIR = $(AUXDIR)/runtime -RUNOPTS = chrsyn cpress format gdbm hashtb krypt mime-codec numint optiondb \ +RUNOPTS = chrsyn cpress format gdbm hashtb krypt mime-codec numint \ ordvec pgsql process rbtree regexp rexp rgxcmp syncproc wttree ystep install: rm -rf $(DESTDIR)$(RUNDIR) $(mkinstalldirs) $(DESTDIR)$(RUNDIR) - $(INSTALL_DATA) *.pkd *.bci $(DESTDIR)$(RUNDIR)/. + $(INSTALL_DATA) *.pkd *.bci optiondb.scm $(DESTDIR)$(RUNDIR)/. @for F in $(RUNOPTS); do \ CMD="$(INSTALL_COM) $${F}.com $(DESTDIR)$(RUNDIR)/.";\ echo "$${CMD}"; eval "$${CMD}";\