You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your guide to making the deb package, command sudo apt-get build-dep --no-install-recommends -y .
does not install fakeroot package, and when building deb, i get the following error:
debuild --no-lintian --lintian-hook "lintian --fail-on error,warning --suppress-tags bad-distribution-in-changes-file -- %p_%v_*.changes" --no-sign -b
dpkg-buildpackage -us -uc -ui -b
dpkg-buildpackage: error: fakeroot not found, either install the fakeroot
package, specify a command with the -r option, or run this as root
debuild: fatal error at line 1184:
dpkg-buildpackage -us -uc -ui -b failed
make: *** [Makefile:81: deb] Error 29
Running sudo apt install fakeroot before make all deb solves the issue.
You need to add fakeroot as a dependency.
The text was updated successfully, but these errors were encountered:
In your guide to making the deb package, command
sudo apt-get build-dep --no-install-recommends -y .
does not install fakeroot package, and when building deb, i get the following error:
Running
sudo apt install fakeroot
beforemake all deb
solves the issue.You need to add fakeroot as a dependency.
The text was updated successfully, but these errors were encountered: