diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-03-05 11:23:36 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-03-05 11:23:36 +0000 |
commit | de8e7543914c12f2450a688d2494c8b3f2014cb3 (patch) | |
tree | c96b0ed9e50562ec193995795713a5d5b5de5385 /Master/texmf-dist/scripts | |
parent | 26223cb22a2a536780efa55e0b0dcca6c58f6c90 (diff) |
Hack to suppress deprecation warning on MacOS
git-svn-id: svn://tug.org/texlive/trunk@58146 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/tlshell/tlshell.tcl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/tlshell/tlshell.tcl b/Master/texmf-dist/scripts/tlshell/tlshell.tcl index 1afe782355b..c81a713f360 100755 --- a/Master/texmf-dist/scripts/tlshell/tlshell.tcl +++ b/Master/texmf-dist/scripts/tlshell/tlshell.tcl @@ -1,6 +1,8 @@ -#!/usr/bin/env wish +#!/bin/sh +# next line ignored by wish but not by sh \ +TK_SILENCE_DEPRECATION=1 exec wish "$0" "$@" -# Copyright 2017-2020 Siep Kroonenberg +# Copyright 2017-2021 Siep Kroonenberg # This file is licensed under the GNU General Public License version 2 # or any later version. |