OpenHantek / OpenHantek6022

OpenHantek6022 is a DSO software for Hantek USB digital signal oscilloscopes 6022BE / BL. Development OS is Debian Linux, but the program also works on FreeBSD, MacOS, RaspberryPi and Windows. No support for non-Linux related issues unless a volunteer steps in!
GNU General Public License v3.0
868 stars 153 forks source link

No need to escalate privilege for building the debian package... #114

Closed Creteil closed 4 years ago

Creteil commented 4 years ago

Hi,

In the process of building « debian » package, you can replace this step :

sudo rm -f packages/* sudo make package sudo apt install packages/openhantek_*_amd64.deb

by :

rm -f packages/* fakeroot make packages sudo apt install packages/openhantek_*_amd64.deb

No need to escalate privilege for building the package...

Regards.

Ho-Ro commented 4 years ago

The fakeroot solution is exactly the way I build locally. The documentation is now updated accordingly. Thx for your hint.