使用 pbuilder-dist xenial build 构建失败

Build failure with pbuilder-dist xenial build

为什么没有构建?部分问题输出如下。

Making distclean in src
make[2]: Entering directory '/build/opensh-0.1/src'
 cd .. && /bin/sh ./config.status src/Makefile depfiles
config.status: creating src/Makefile
./config.status: 1517: ./config.status: gawk: not found
config.status: error: could not create src/Makefile
Makefile:689: recipe for target 'Makefile' failed
make[2]: *** [Makefile] Error 127
make[2]: Leaving directory '/build/opensh-0.1/src'
Makefile:810: recipe for target 'distclean-recursive' failed
make[1]: *** [distclean-recursive] Error 1
make[1]: Leaving directory '/build/opensh-0.1'
dh_auto_clean: make -j1 distclean returned exit code 2
debian/rules:18: recipe for target 'clean' failed
make: *** [clean] Error 2
dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
I: copying local configuration
E: Failed autobuilding of package
I: unmounting dev/pts filesystem
I: unmounting run/shm filesystem
I: unmounting proc filesystem
I: cleaning the build env 
I: removing directory /var/cache/pbuilder/build/23507 and its subdirectories

我确实安装了 gawk,我的配置没有什么奇怪的。我的debian/control

$ more debian/control 
Source: opensh
Section: utils
Priority: optional
Maintainer: Niklas Larsson <nik@kth.se>
Build-Depends: debhelper (>=9),autotools-dev
Standards-Version: 3.9.6
Homepage: <insert the upstream URL, if relevant>
#Vcs-Git: git://anonscm.debian.org/collab-maint/opensh.git
#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/opensh.git

Package: opensh
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: <insert up to 60 chars description>
 <insert long description, indented with spaces>

debian/control 文件不正确。 gawk 不是必需的或构建必需的包,因此它不包含在默认的 pbuilder 环境中。如果构建过程需要,则需要明确列出:

Build-Depends: debhelper (>=9), autotools-dev, gawk

安装在pbuilder环境之外也没有关系。环境有意保持最小以强制执行正确的构建依赖性。