From: Chris Hanson Date: Fri, 26 Oct 2018 02:02:36 +0000 (-0700) Subject: Change "module" to "plugin". X-Git-Tag: mit-scheme-pucked-10.1.2~16^2~140 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=4cbe8331b034bac1c36216d9f80c52db94d3cce8;p=mit-scheme.git Change "module" to "plugin". --- diff --git a/src/Setup.sh b/src/Setup.sh index 197328bd3..538b9ff9d 100755 --- a/src/Setup.sh +++ b/src/Setup.sh @@ -76,7 +76,7 @@ fi . etc/functions.sh INSTALLED_SUBDIRS="cref ffi sf sos ssp star-parser xml" -MODULE_SUBDIRS="blowfish edwin gdbm imail pgsql mcrypt x11 x11-screen" +PLUGIN_SUBDIRS="blowfish edwin gdbm imail pgsql mcrypt x11 x11-screen" OTHER_SUBDIRS="6001 compiler runtime win32 xdoc microcode" # lib @@ -108,7 +108,7 @@ for SUBDIR in ${INSTALLED_SUBDIRS} ${OTHER_SUBDIRS}; do (cd ${SUBDIR} && ./Setup.sh ${1+"$@"}) done -for SUBDIR in ${MODULE_SUBDIRS}; do +for SUBDIR in ${PLUGIN_SUBDIRS}; do echo "setting up ${SUBDIR}" (cd ${SUBDIR} && ./autogen.sh) done