X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fstandalone.scm;h=1bed6c7f5e3b1ece0a36bb80cfa38dd2ada7bb16;hb=0d5cd27b3638ceea4b2326b795aef5b83d5389c4;hp=dc3ee80fcef0d159045a45a233eab510818edf74;hpb=347426c0c9d2fb8e4e75216f717606f1f2124b1a;p=lilypond.git diff --git a/scm/standalone.scm b/scm/standalone.scm index dc3ee80fce..1bed6c7f5e 100644 --- a/scm/standalone.scm +++ b/scm/standalone.scm @@ -2,11 +2,14 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 1998--2000 Jan Nieuwenhuizen -;;;; Han-Wen Nienhuys +;;;; (c) 1998--2007 Jan Nieuwenhuizen +;;;; Han-Wen Nienhuys -(define standalone (not (defined? 'ly-gulp-file))) -(write standalone (current-error-port)) + +(use-modules (ice-9 rdelim)) + +(define standalone (not (defined? 'ly:gulp-file))) +;;(write standalone (current-error-port)) (define (gulp-file name) (let* ((file (open-input-file name)) @@ -16,8 +19,8 @@ (define (scm-gulp-file name) (set! %load-path - (cons (string-append (getenv 'LILYPONDPREFIX) "/ly") - (cons (string-append (getenv 'LILYPONDPREFIX) "/ps") + (cons (string-append (getenv "LILYPOND_DATADIR") "/ly") + (cons (string-append (getenv "LILYPOND_DATADIR") "/ps") %load-path))) (let ((path (%search-load-path name))) (if path @@ -31,7 +34,7 @@ (number->string x)) " "))) -(define ly-gulp-file scm-gulp-file) -(define ly-number->string scm-number->string) +(define ly:gulp-file scm-gulp-file) +(define ly:number->string scm-number->string) -(eval-string (ly-gulp-file "lily.scm")) \ No newline at end of file +(eval-string (ly:gulp-file "lily.scm"))