From: Matt Birkholz Date: Sun, 4 Aug 2019 23:56:01 +0000 (-0700) Subject: Plugin builds: Restore dependence of stamp-scheme on -const.bin. X-Git-Tag: mit-scheme-pucked-10.1.20~21^2~5 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2992a443f5055e09d3cd5edc03bfa5d0c77d189d;p=mit-scheme.git Plugin builds: Restore dependence of stamp-scheme on -const.bin. The stamp-scheme target builds -types.bin, not -const.bin. The -const.bin comes from plugin-const.scm which comes from ./plugin-const which comes from -const.c which is a product of stamp-shim. --- diff --git a/src/blowfish/Makefile.am b/src/blowfish/Makefile.am index 696d880fe..034a2acb4 100644 --- a/src/blowfish/Makefile.am +++ b/src/blowfish/Makefile.am @@ -69,7 +69,7 @@ blowfish-const.scm: blowfish-const$(EXEEXT) ./blowfish-const @MIT_SCHEME_DEPS@ -stamp-scheme: stamp-shim $(sources) blowfish.pkg +stamp-scheme: stamp-shim $(sources) blowfish-const.bin blowfish.pkg MIT_SCHEME_EXE=$(MIT_SCHEME_EXE) ./compile.sh echo "done" > $@ diff --git a/src/gdbm/Makefile.am b/src/gdbm/Makefile.am index b8fa64072..40a8edfba 100644 --- a/src/gdbm/Makefile.am +++ b/src/gdbm/Makefile.am @@ -69,7 +69,7 @@ gdbm-const.scm: gdbm-const$(EXEEXT) ./gdbm-const @MIT_SCHEME_DEPS@ -stamp-scheme: stamp-shim $(sources) gdbm.pkg +stamp-scheme: stamp-shim $(sources) gdbm-const.bin gdbm.pkg MIT_SCHEME_EXE=$(MIT_SCHEME_EXE) ./compile.sh echo "done" > $@ diff --git a/src/mcrypt/Makefile.am b/src/mcrypt/Makefile.am index 6e5e6c304..ceaa9bdf0 100644 --- a/src/mcrypt/Makefile.am +++ b/src/mcrypt/Makefile.am @@ -69,7 +69,7 @@ mcrypt-const.scm: mcrypt-const$(EXEEXT) ./mcrypt-const @MIT_SCHEME_DEPS@ -stamp-scheme: stamp-shim $(sources) mcrypt.pkg +stamp-scheme: stamp-shim $(sources) mcrypt-const.bin mcrypt.pkg MIT_SCHEME_EXE=$(MIT_SCHEME_EXE) ./compile.sh echo "done" > $@ diff --git a/src/pgsql/Makefile.am b/src/pgsql/Makefile.am index e450ed4a2..2c956ca18 100644 --- a/src/pgsql/Makefile.am +++ b/src/pgsql/Makefile.am @@ -69,7 +69,7 @@ pgsql-const.scm: pgsql-const$(EXEEXT) ./pgsql-const @MIT_SCHEME_DEPS@ -stamp-scheme: stamp-shim $(sources) pgsql.pkg +stamp-scheme: stamp-shim $(sources) pgsql-const.bin pgsql.pkg MIT_SCHEME_EXE=$(MIT_SCHEME_EXE) ./compile.sh echo "done" > $@ diff --git a/src/x11/Makefile.am b/src/x11/Makefile.am index eacb6f134..47196fb78 100644 --- a/src/x11/Makefile.am +++ b/src/x11/Makefile.am @@ -71,7 +71,7 @@ x11-const.scm: x11-const$(EXEEXT) ./x11-const @MIT_SCHEME_DEPS@ -stamp-scheme: stamp-shim $(sources) x11.pkg +stamp-scheme: stamp-shim $(sources) x11-const.bin x11.pkg MIT_SCHEME_EXE=$(MIT_SCHEME_EXE) ./compile.sh echo "done" > $@