Browse Source
s3.TUP Fix dialog binary compile comands (v0.23.2)
pull/61/head
WXbet
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
support/functions/_plugin_update_toolchain
|
@ -3,7 +3,7 @@ |
|
|
#simplebuild_plugin tcupdate |
|
|
#simplebuild_plugin tcupdate |
|
|
|
|
|
|
|
|
tcupdate(){ |
|
|
tcupdate(){ |
|
|
pversion="0.23.1"; |
|
|
pversion="0.23.2"; |
|
|
pname="s3.TUP"; |
|
|
pname="s3.TUP"; |
|
|
pdesc="Plugin $pname v$pversion"; |
|
|
pdesc="Plugin $pname v$pversion"; |
|
|
configname="$configdir/plugin_update_toolchain.config"; |
|
|
configname="$configdir/plugin_update_toolchain.config"; |
|
@ -1243,9 +1243,9 @@ _check_pkg(){ |
|
|
if [ $(_compare_version "$dialog_ver" "1.3") == "<" ];then |
|
|
if [ $(_compare_version "$dialog_ver" "1.3") == "<" ];then |
|
|
dialog_compile="DIALOG_BIN=\$(which dialog) \ |
|
|
dialog_compile="DIALOG_BIN=\$(which dialog) \ |
|
|
\n\$DIALOG_BIN --version \ |
|
|
\n\$DIALOG_BIN --version \ |
|
|
\npushd /tmp && wget https://invisible-island.net/datafiles/release/dialog.tar.gz \ |
|
|
\ncd /tmp && wget https://invisible-island.net/datafiles/release/dialog.tar.gz \ |
|
|
\ntar -xf dialog.tar.gz \ |
|
|
\ntar -xf dialog.tar.gz \ |
|
|
\ncd \$(find . -mindepth 1 -maxdepth 1 -type d -printf '%f\\\n' | grep dialog-) \ |
|
|
\npushd \$(find . -mindepth 1 -maxdepth 1 -type d -printf '%f\\\n' | grep dialog-) \ |
|
|
\n./configure && make \ |
|
|
\n./configure && make \ |
|
|
\nsudo cp \$DIALOG_BIN \$DIALOG_BIN.old && sudo mv dialog \$DIALOG_BIN \ |
|
|
\nsudo cp \$DIALOG_BIN \$DIALOG_BIN.old && sudo mv dialog \$DIALOG_BIN \ |
|
|
\npopd && \$DIALOG_BIN --version" |
|
|
\npopd && \$DIALOG_BIN --version" |
|
|