Skip to content

Commit 6069c0e

Browse files
authored
Disable tcl/tk
1 parent d22f05d commit 6069c0e

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

linuxdeploy-plugin-python.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -275,16 +275,16 @@ find "lib-dynload" -name '*.so' -type f | while read file; do patch_binary "${fi
275275

276276

277277
# Copy any TCl/Tk shared data
278-
if [[ ! -d "${APPDIR}/${prefix}/share/tcltk" ]]; then
279-
if [[ -d "/usr/share/tcltk" ]]; then
280-
mkdir -p "${APPDIR}/${prefix}/share"
281-
cp -r "/usr/share/tcltk" "${APPDIR}/${prefix}/share"
282-
else
283-
mkdir -p "${APPDIR}/${prefix}/share/tcltk"
284-
tclpath="$(ls -d /usr/share/tcl* | tail -1)"
285-
tkpath="$(ls -d /usr/share/tk* | tail -1)"
286-
for path in "${tclpath}" "${tkpath}"; do
287-
cp -r "${path}" "${APPDIR}/${prefix}/share/tcltk"
288-
done
289-
fi
290-
fi
278+
#if [[ ! -d "${APPDIR}/${prefix}/share/tcltk" ]]; then
279+
# if [[ -d "/usr/share/tcltk" ]]; then
280+
# mkdir -p "${APPDIR}/${prefix}/share"
281+
# cp -r "/usr/share/tcltk" "${APPDIR}/${prefix}/share"
282+
# else
283+
# mkdir -p "${APPDIR}/${prefix}/share/tcltk"
284+
# tclpath="$(ls -d /usr/share/tcl* | tail -1)"
285+
# tkpath="$(ls -d /usr/share/tk* | tail -1)"
286+
# for path in "${tclpath}" "${tkpath}"; do
287+
# cp -r "${path}" "${APPDIR}/${prefix}/share/tcltk"
288+
# done
289+
# fi
290+
#fi

0 commit comments

Comments
 (0)