From: Matt Birkholz Date: Tue, 17 Sep 2013 00:07:20 +0000 (-0700) Subject: gtk: install-load-option needs file list, not install-shim. X-Git-Tag: mit-scheme-pucked-9.2.12~466 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2a101a1bb0fe67e6d4f81f045e439ba01ba47bea;p=mit-scheme.git gtk: install-load-option needs file list, not install-shim. --- diff --git a/src/gtk/Makefile.in b/src/gtk/Makefile.in index 60695f8a6..b4c9120ae 100644 --- a/src/gtk/Makefile.in +++ b/src/gtk/Makefile.in @@ -31,8 +31,9 @@ all: gtk-shim.so gtk-types.bin gtk-const.bin echo "gtk-unx.crf:0: warning: non-empty"; exit 1; fi check: - echo '(load "check")' | $(exe) - echo '(load "check-doc")' | $(exe) + ( echo '(begin'; + echo ' (load "check")'; + echo ' (load "check-doc"))' ) | $(exe) doc: mit-scheme-gtk.info doc: mit-scheme-gtk.html @@ -49,9 +50,10 @@ install: install-shim #install: install-doc install-shim: - echo '(install-shim "gtk")' \ + ( echo '(begin'; + echo ' (install-shim "gtk")'; + echo ' (install-load-option "gtk"))' ) \ | $(exe) -- *.com *.bci *.pkd make.scm conses.png - echo '(install-load-option "gtk")' | $(exe) # install-doc: # echo '(install-info "gtk")' | $(exe)