diff options
author | jamey <jamey> | 2005-12-08 20:54:53 +0000 |
---|---|---|
committer | jamey <jamey> | 2005-12-08 20:54:53 +0000 |
commit | dc70099bbf8c1f04d9727b68247b3cc582920090 (patch) | |
tree | 06e6943c089287d124571370e11598ba0a5f1ce3 /xts5/bin | |
parent | 31fb0ca48e162f04b90e51cb2370c48789bf0326 (diff) |
Oops, variable references not allowed in tetexec.cfg. Substitute TET_ROOT when xts-config is run instead.
Diffstat (limited to 'xts5/bin')
-rwxr-xr-x | xts5/bin/xts-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xts5/bin/xts-config b/xts5/bin/xts-config index 07547dc7..d33ff93b 100755 --- a/xts5/bin/xts-config +++ b/xts5/bin/xts-config @@ -11,7 +11,7 @@ BEGIN { next unless /^Font Path:/; <XSET> =~ /^\s*(.*)/; - $::vars{"XT_FONTPATH"} = '$TET_ROOT/xts5/fonts,' . $1; + $::vars{"XT_FONTPATH"} = $ENV{"TET_ROOT"} . '/xts5/fonts,' . $1; $::vars{"XT_FONTPATH_GOOD"} = $1; } close(XSET); |