1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Correcting a install command --Fedora

dnf group install !=  dnf groupinstall   (the former  will fail to install, it  shows the packages but  silently  fails with `Nothing to Do` \n   `Complete!`
This commit is contained in:
Corey Sheldon 2016-03-07 20:57:49 -05:00
parent 1eb68542df
commit 964252dfa7

View File

@ -196,7 +196,7 @@ sudo apt-get install build-essential qt5-qmake qt5-default qttools5-dev-tools li
**This means that you have to compile sqlcipher yourself, otherwise compiling qTox will fail.** **This means that you have to compile sqlcipher yourself, otherwise compiling qTox will fail.**
```bash ```bash
sudo dnf group install "Development Tools" sudo dnf groupinstall "Development Tools" ( can also use sudo dnf install @"Development Tools" )
sudo dnf install qt-devel qt-doc qt-creator qt5-qtsvg qt5-qtsvg-devel openal-soft-devel libXScrnSaver-devel qrencode-devel ffmpeg-devel qtsingleapplication qt5-linguist gtk2-devel sudo dnf install qt-devel qt-doc qt-creator qt5-qtsvg qt5-qtsvg-devel openal-soft-devel libXScrnSaver-devel qrencode-devel ffmpeg-devel qtsingleapplication qt5-linguist gtk2-devel
``` ```