diff options
author | Karl Berry <karl@freefriends.org> | 2007-07-16 17:08:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-07-16 17:08:10 +0000 |
commit | 18ea95383394cd5fabb9aaeb2c697a63ca4f7972 (patch) | |
tree | 0959231fe5ba505aaacb1860a5420febb4245dcf /Build/source/texk/tetex/texconfig-dialog | |
parent | d4c718b1f4d552c20d219b36b287015714be74b1 (diff) |
check for builtin dialog/whiptail on any system (jukka salmi, 21 Jun 2007 14:49:48)
git-svn-id: svn://tug.org/texlive/trunk@4631 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/tetex/texconfig-dialog')
-rwxr-xr-x | Build/source/texk/tetex/texconfig-dialog | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Build/source/texk/tetex/texconfig-dialog b/Build/source/texk/tetex/texconfig-dialog index 76e1f51eea6..8ccda930dd7 100755 --- a/Build/source/texk/tetex/texconfig-dialog +++ b/Build/source/texk/tetex/texconfig-dialog @@ -21,7 +21,7 @@ export PATH test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' # the version string -version=1112981053 # seconds since `00:00:00 1970-01-01 UTC' +version=1184605103 # seconds since `00:00:00 1970-01-01 UTC' # date '+%s' (with GNU date) : ${PAGER=more} @@ -103,14 +103,14 @@ runDialog() ############################################################################### findDialog() { - { u=`uname -s`; } 2>/dev/null - case "$u" in - FreeBSD|Linux|cygwin*|CYGWIN*) - test -f /usr/bin/whiptail && DIALOG_PROG=/usr/bin/whiptail - test -f /usr/bin/dialog && DIALOG_PROG=/usr/bin/dialog - test -f /bin/dialog && DIALOG_PROG=/bin/dialog - ;; - esac + for bin in whiptail dialog + do + binLoc=`texconfig findprog $bin` + case $binLoc in + "") DIALOG_PROG="";; + *) DIALOG_PROG=$binLoc; break;; + esac + done case $DIALOG_PROG in "") : ${DIALOG_TERMINFO=$TEXMFMAIN/texconfig} |