* src/gnc-module/test/test-load-scm: turn in to a self-contained

guile script launched by /bin/sh which will respect the PATH.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5895 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Rob Browning 2001-11-16 20:58:11 +00:00
parent fbad081437
commit acabe7e3a5

View File

@ -1,4 +1,11 @@
#! /bin/sh
guile -c "(use-modules (gnucash gnc-module))
(gnc:module-system-init)
(gnc:module-load \"gnucash/foo\" 0)"
exec guile -s $0 "$@"
!#
(use-modules (gnucash gnc-module))
(gnc:module-system-init)
(gnc:module-load "gnucash/foo" 0)
;; Local Variables:
;; mode: scheme
;; End: