构建 debian 包时 returns missing-dependency-on-libc 对 lintian 的期望是什么

What expects lintian when it returns missing-dependency-on-libc when building a debian package

当我尝试使用 debuild -i -us -uc -b 构建我的 vala 应用程序时,包已构建但 lintian 抱怨我的控制文件缺少对 libc 的依赖:

E: <my app>: missing-dependency-on-libc needed by <path to my binary>

我的依赖部分应该添加什么?

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>

作为@apmasell,问题来自我在问题中包含的部分下方的部分。

忘记补充了

Depends: ${misc:Depends}, ${shlibs:Depends}

到我的二进制包。