diff options
author | Gaël PORTAY <gael.portay@savoirfairelinux.com> | 2018-02-10 09:49:06 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-02-10 16:14:56 +0100 |
commit | 7c384c3b0f292413c3364f5113b340e22efa76f4 (patch) | |
tree | 15f767858afe224a24d12226d36d57789c73c51b | |
parent | 04ceb347e5758844e7c703b2e4158bb107b08a96 (diff) | |
download | buildroot-7c384c3b0f292413c3364f5113b340e22efa76f4.tar.gz buildroot-7c384c3b0f292413c3364f5113b340e22efa76f4.zip |
qt5tools: fix typo in <pkg>_SOURCE
The QT5TOOLS_SOURCE variable uses mismatch QT5BASE_VERSION variable.
This commit fixes the typo by using the appropriate QT5TOOLS_VERSION
variable.
Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/qt5/qt5tools/qt5tools.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/qt5/qt5tools/qt5tools.mk b/package/qt5/qt5tools/qt5tools.mk index 3638b74163..cf181e576b 100644 --- a/package/qt5/qt5tools/qt5tools.mk +++ b/package/qt5/qt5tools/qt5tools.mk @@ -6,7 +6,7 @@ QT5TOOLS_VERSION = $(QT5_VERSION) QT5TOOLS_SITE = $(QT5_SITE) -QT5TOOLS_SOURCE = qttools-opensource-src-$(QT5BASE_VERSION).tar.xz +QT5TOOLS_SOURCE = qttools-opensource-src-$(QT5TOOLS_VERSION).tar.xz QT5TOOLS_DEPENDENCIES = qt5base QT5TOOLS_INSTALL_STAGING = YES |