Issue
When I try to build my vala application with debuild -i -us -uc -b
, the packages are built but lintian complains that my control file missed a dependency to libc
:
E: <my app>: missing-dependency-on-libc needed by <path to my binary>
What should add to the my depends section?
Source: <my_app>
Section: x11
Priority: optional
Maintainer: <me>
Build-Depends: cmake (>= 2.8),
debhelper (>= 9),
libgee-0.8-dev,
libglib2.0-dev,
valac (>= 0.22)
Standards-Version: 3.9.5
Homepage: <my_website>
Solution
As @apmasell, the issue came from the the section below the one that I included in the question.
I forgot to add
Depends: ${misc:Depends}, ${shlibs:Depends}
to my binary packages.
Answered By - Name is carl