0

我正在尝试构建一个 Debian 软件包,但我遇到了这个奇怪的伪目录问题。我跑:

$ fakeroot debian/rules binary

我之前已经构建了二进制文件,但是我的系统上肯定发生了一些变化。现在 dh_md5sums 出错并返回:

md5sum: include: Is a directory
dh_md5sums: command returned error code
make: *** [binary-arch] Error 1

的确,include是一个目录。因此,我在 dh_md5sums 中添加了一些调试语句,以找出为什么include会被散列,尽管应该过滤掉目录的行。添加:

doit("ls", "-l", "$tmp");

表明,include当 dh_md5sums 运行时,它确实不是一个目录:

total 28
drwxr-xr-x 2 root root 4096 2009-06-18 13:36 bin
-rwxr-xr-x 3 root root 4096 2009-06-18 13:36 include
drwxr-xr-x 3 root root 4096 2009-06-18 13:36 var
# some directories removed for brevity's sake

那么,我可以删除它吗?我补充说:

doit("rm", "$tmp/include");

并得到:

rm: cannot remove `debian/myproject/include': Is a directory

也许它......变成了一个目录?我ls -l在下面添加了另一个rm并得到:

total 28
drwxr-xr-x 2 root root 4096 2009-06-18 13:36 bin
-rwxr-xr-x 3 root root 4096 2009-06-18 13:36 include
drwxr-xr-x 3 root root 4096 2009-06-18 13:36 var

当脚本运行完毕后,我可以这样做:

$ ls -l
drwxr-xr-x 2 x x 4096 2009-06-18 13:48 bin
drwxr-xr-x 3 x x 4096 2009-06-18 13:48 include
drwxr-xr-x 3 x x 4096 2009-06-18 13:48 var

...这很奇怪,因为它include变成了一个目录并且所有权发生了变化(x是我的用户名)。 include甚至包含它应该包含的所有头文件。

有谁知道发生了什么?

4

1 回答 1

1
total 28
drwxr-xr-x 2 root root 4096 2009-06-18 13:36 bin
-rwxr-xr-x 3 root root 4096 2009-06-18 13:36 include
drwxr-xr-x 3 root root 4096 2009-06-18 13:36 var
# some directories removed for brevity's sake

请注意,include它的链接计数为 3,表示它要么是具有 1 个子目录的目录,要么是具有 3 个硬链接的文件。前者似乎更有可能。

这似乎是与 fakeroot 的不良交互。我以前见过 fakeroot 有时会“忘记”权限的情况,因此请仔细检查何时include创建或修改它是否具有正确的类型(并且这些都没有最近的更改)。

于 2009-06-18T19:20:33.457 回答