thunder icon indicating copy to clipboard operation
thunder copied to clipboard

install-qt.sh not install additional components after was called once

Open alevadkal opened this issue 2 years ago • 0 comments

Description

install-qt.sh not install additional components after was called once

Prerequisites

Run install-qt.sh with different components. Second run do nothing

Steps to Reproduce

export QT_INSTALL_DIR=~/Qt
export QT_VERSION=5.12.10
export QT_BIN=${QT_INSTALL_DIR}/${QT_VERSION}/gcc_64/bin
export PATH="$QT_INSTALL_DIR/Tools/QtCreator/bin:$QT_BIN:$PATH"
bash ./build/install-qt.sh -d $QT_INSTALL_DIR --version $QT_VERSION qtbase qtmultimedia qtscript qtsvg qtimageformats qtgraphicaleffects qtquickcontrols2 qttools qtxmlpatterns qtdeclarative icu
bash ./build/install-qt.sh -d $QT_INSTALL_DIR --version $QT_VERSION qtgamepad

same behaviour

export QT_INSTALL_DIR=~/Qt
export QT_VERSION=5.12.10
export QT_BIN=${QT_INSTALL_DIR}/${QT_VERSION}/gcc_64/bin
export PATH="$QT_INSTALL_DIR/Tools/QtCreator/bin:$QT_BIN:$PATH"
bash ./build/install-qt.sh -d $QT_INSTALL_DIR --version $QT_VERSION qtbase qtmultimedia qtscript qtsvg qtimageformats qtgraphicaleffects qtquickcontrols2 qttools qtxmlpatterns qtdeclarative icu
bash ./build/install-qt.sh -d $QT_INSTALL_DIR --version $QT_VERSION qtbase qtmultimedia qtscript qtsvg qtimageformats qtgraphicaleffects qtquickcontrols2 qttools qtxmlpatterns qtdeclarative icu qtgamepad

Expected behavior:

qtgamepad installed

Actual behavior:

qtgamepad not installed

Reproducibility:

100%

Versions

origin/master hash cacec2699124831f27ad54ed0a14536d8dbbcf60

Additional Information

Workaround:

Use --force|-f flags with all required components or remove QT_INSTALL_DIR

alevadkal avatar Feb 25 '23 22:02 alevadkal