summaryrefslogtreecommitdiff
path: root/module/scripts/use2dot.scm
AgeCommit message (Collapse)AuthorFilesLines
2020-01-20use2dot: Fix incorrect #:autoload binding set leading to unbound variables.Ludovic Courtès1-6/+6
* module/scripts/use2dot.scm: Load (ice-9 getopt-long) with #:use-module rather than #:autoload. With the previous #:autoload spec, 'option-ref' would be unbound due to the new autoload semantics.
2011-07-23more work on "guild list"Andy Wingo1-1/+3
* module/scripts/: Add %summary entries, and in many cases, %include-in-guild-list entries to inhibit a script from appearing in "guild list". Update list.scm to respect this new variable.
2009-06-17Complete changing license to LGPLv3+Neil Jerram1-7/+7
(Still guile-readline to do, but that will all be GPLv3+.)
2009-04-17guile-tools is a scheme script that loads scheme modulesAndy Wingo1-0/+108
* meta/guile-tools: Changed to be a scheme script. Instead of looking for executables in a "scripts dir", we just look for modules in (scripts), and load the modules directly. * module/Makefile.am: * module/scripts/: Move the scripts into module/ so they can be compiled. Rename scripts from `foo' to `foo.scm'. * libguile/Makefile.am: Invoke the snarf->texi code via guile-tools. * configure.in: * .gitignore: Update for changes.