minix/dist/nvi/dist/findconfig
Lionel Sambuc 3e1db26a5a Termcap update, replacing elvis by nvi.
Removing elvis, importing nvi, ctags, updating libedit.

Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
2013-01-24 07:44:38 +01:00

15 lines
363 B
Tcl

#!/bin/sh
# the next line restarts using tclsh \
exec tclsh "$0" "$@"
# A utility that searches for the 'tclConfig.sh' shell script
# which contains platform-specific compiler/linker options for
# building Tcl programs and shared libraries.
foreach dir $tcl_pkgPath {
if [file exists $dir/tclConfig.sh] {
puts $dir/tclConfig.sh
exit
}
}