evilsocket / opensnitch

OpenSnitch is a GNU/Linux interactive application firewall inspired by Little Snitch.
GNU General Public License v3.0
9.92k stars 490 forks source link

Add instructions on how to fix UI failing to build properly on Fedora #737

Closed pizzadude closed 1 year ago

pizzadude commented 1 year ago

There is no "lrelease" binary on Fedora, which is needed to build the UI properly. There is a "lrelease-qt5" binary, which is part of the package "qt5-linguist". To fix the UI not building properly on Fedora, symlink /usr/lib64/qt5/bin/lrelease-qt5 to /usr/local/bin/lrelease:

sudo ln -s /usr/lib64/qt5/bin/lrelease-qt5 /usr/local/bin/lrelease

Then it should build properly.