Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 152652 | Differences between
and this patch

Collapse All | Expand All

(-)festival/lib/init.scm (-4 / +4 lines)
Lines 52-59 Link Here
52
52
53
;;;  A chance to set various variables to a local setting e.g.
53
;;;  A chance to set various variables to a local setting e.g.
54
;;;  lexdir, voices_dir audio etc etc.
54
;;;  lexdir, voices_dir audio etc etc.
55
(if (probe_file (path-append libdir "sitevars.scm"))
55
(if (probe_file "/etc/festival/sitevars.scm")
56
    (load (path-append libdir "sitevars.scm")))
56
    (load "/etc/festival/sitevars.scm"))
57
57
58
;;; CSTR siod extensions
58
;;; CSTR siod extensions
59
(require 'cstr)
59
(require 'cstr)
Lines 133-140 Link Here
133
;;;
133
;;;
134
;;;  Local site initialization, if the file exists load it
134
;;;  Local site initialization, if the file exists load it
135
;;;
135
;;;
136
(if (probe_file (path-append libdir "siteinit.scm"))
136
(if (probe_file "/etc/festival/siteinit.scm")
137
    (load (path-append libdir "siteinit.scm")))
137
    (load "/etc/festival/siteinit.scm"))
138
138
139
;;;  User initialization, if a user has a personal customization
139
;;;  User initialization, if a user has a personal customization
140
;;;  file loaded it
140
;;;  file loaded it

Return to bug 152652