debuild 无法删除“..”权限被拒绝,debian/rules:9:目标“clean”的配方失败

debuild 无法删除“..”权限被拒绝,debian/rules:9:目标“clean”的配方失败

我正在尝试运行 debuild 命令以在我的项目中使用 debian 但是,当我运行 debuild 命令时,我收到这样的错误:

hoseopjeong@hoseopjeong-VirtualBox:~/Documents/HoseopJeong_debian_lab9/debianlaboration9-0.0$ debuild
dpkg-buildpackage -rfakeroot -D -us -uc
dpkg-buildpackage: source package debianlaboration9
dpkg-buildpackage: source version 0.0-1
dpkg-buildpackage: source distribution UNRELEASED
dpkg-buildpackage: source changed by Ho Seop Jeong <my email>
dpkg-source --before-build debianlaboration9-0.0
dpkg-buildpackage: host architecture i386
fakeroot debian/rules clean
dh clean  
 dh_testdir
 dh_auto_clean
  make -j1 distclean
 make[1]: Entering directory '/home/hoseopjeong/Documents/HoseopJeong_debian_lab9/debianlaboration9-0.0'
rm -f electrotest
make[1]: Leaving directory '/home/hoseopjeong/Documents/HoseopJeong_debian_lab9/debianlaboration9-0.0'
dh_clean
rm -f debian/debhelper-build-stamp
rm -f debian/debianlaboration9.substvars
rm -f debian/debianlaboration9.*.debhelper
rm -rf debian/debianlaboration9/
rm: cannot remove 'debian/debianlaboration9/usr/electrotest_standalone': Permission denied
 dh_clean: rm -rf debian/debianlaboration9/ returned exit code 1
 debian/rules:9: recipe for target 'clean' failed
 make: *** [clean] Error 25
 dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
 debuild: fatal error at line 1376:
 dpkg-buildpackage -rfakeroot -D -us -uc failed

这就是我的 makefile 的样子:

prefix = /usr/local
all: electrotest


electrotest: ./src/electrotest_standalone.c
   gcc -o electrotest_standalone ./src/electrotest_standalone.c -lm
install:electrotest
   install -D electrotest_standalone \
$(DESTDIR)$(prefix)/bin/electrotest_standalone
clean:
   -rm -f electrotest

distclean:clean
uninstall:
    -rm -f $(DESTDIR)$(prefix)/bin/electrotest_standalone

PHONY: all install clean distclean uninstall

这是我的 debian 规则文件

#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

%:
    dh $@  

#override_dh_auto_install:
#   dh_auto_install -- prefix=/usr

#override_dh_install:
#   dh_install --list-missing -X.pyc -X.pyo
override_dh_auto_install:
    dh_auto_install -- prefix=/usr

因此,当您看到终端中生成的错误时,如果我理解正确,debuild 会尝试运行 makefile 中定义的 clean 以删除在 debian 文件夹内创建的 elecrotest。但是,该文件夹是一个权限有限的文件夹,清理后会显示权限被拒绝错误。

我已经检查过这个帖子如何防止 debuild 执行清理?其中一个答案是说

override_dh_clean:

但我不确定这是否是正确的方法,因为我认为这可能会给构建带来问题。使用 chmod 更改 debian 生成的文件夹的权限是唯一的方法吗?或者有什么聪明的想法可以解决这个问题吗?我不是在寻找解决方法..需要一些解决方案

正如AB在评论中提到的,我做了ls -ld debian/debianlaboration9/usr/并得到了这个结果

drwxr-xr-x 2 root root 4096 jun 14 03:19

相关内容