Skip to content

Commit

Permalink
Fix INSTALL instructions for Debian-based distros
Browse files Browse the repository at this point in the history
The `export` is spurious and the command as-is will not work. `QT_SELECT` is only required to run `qmake`, so this changes it so it's only done for the qmake command.
  • Loading branch information
minecrafter committed May 9, 2016
1 parent f0dd4b0 commit 151a941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion INSTALL
Expand Up @@ -113,7 +113,7 @@ All of them seem to include the Qt5 SDK in the official main repos.
1) sudo apt-get install g++ git qtbase5-dev
2) git clone https://github.com/Tarsnap/tarsnap-gui.git && cd tarsnap-gui
3) git checkout v0.9 # switch to the desired version
4) export QT_SELECT=qt5 qmake && make -j$(nproc)
4) QT_SELECT=qt5 qmake && make -j$(nproc)
5) ./tarsnap-gui

---------------------
Expand Down

0 comments on commit 151a941

Please sign in to comment.