diff options
author | peter <peter@FreeBSD.org> | 1997-08-21 16:09:56 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-08-21 16:09:56 +0800 |
commit | a8ee6872fbb5803c650352683acc9d729805f758 (patch) | |
tree | a2cc56d032e52a8a51dda780660ae67b94f77336 /mail/exmh2/scripts | |
parent | 185a499ff21eb311004f52bdf3f1285c9aabf128 (diff) | |
download | freebsd-ports-gnome-a8ee6872fbb5803c650352683acc9d729805f758.tar.gz freebsd-ports-gnome-a8ee6872fbb5803c650352683acc9d729805f758.tar.zst freebsd-ports-gnome-a8ee6872fbb5803c650352683acc9d729805f758.zip |
Update to use tcl80/tk80 "proper". Exmh definately should be using tcl8.0
because the new byte compiler has a significant speedup for exmh's mailbox
contents list processing.
Diffstat (limited to 'mail/exmh2/scripts')
-rw-r--r-- | mail/exmh2/scripts/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/exmh2/scripts/build b/mail/exmh2/scripts/build index 133db86edc56..7450c446b64c 100644 --- a/mail/exmh2/scripts/build +++ b/mail/exmh2/scripts/build @@ -1,6 +1,6 @@ #! /bin/sh # -# $Id: build,v 1.3 1997/07/02 04:59:54 peter Exp $ +# $Id: build,v 1.4 1997/08/14 03:44:30 peter Exp $ # VERSION="`sed -ne 's/^set vers \(.*\)/\1/p' ${WRKSRC}/exmh.install`" @@ -72,5 +72,5 @@ done rm -f ${SEDFILE} -echo "cd lib ; echo 'auto_mkindex . *.tcl ; exit' | tclsh" -cd lib ; echo 'auto_mkindex . *.tcl ; exit' | tclsh +echo "cd lib ; echo 'auto_mkindex . *.tcl ; exit' | ${TCLSH}" +cd lib ; echo 'auto_mkindex . *.tcl ; exit' | ${TCLSH} |