New review comment by thetredev on void-packages repository https://github.com/void-linux/void-packages/pull/47880#discussion_r1435409656 Comment: Yeah, got the error again: ``` => backintime-qt-1.4.1_1: running pkg_install ... mv: cannot stat '/destdir//backintime-1.4.1/etc/dbus-1': No such file or directory => ERROR: backintime-qt-1.4.1_1: pkg_install: 'mv ${DESTDIR}/$files ${PKGDESTDIR}/${_targetdir}' exited with 1 => ERROR: in _vmove() at common/environment/setup/install.sh:228 => ERROR: in _noglob_helper() at common/environment/setup/install.sh:12 => ERROR: in pkg_install() at srcpkgs/backintime-qt/template:43 ``` It tries to move the files out of `backintime` when it builds `backintime-qt`, so I'm confused now. I reverted the whole `backintime-qt_package` function to the one from master locally: ``` backintime-qt_package() { short_desc+=" - Qt GUI" depends="backintime-${version}_${revision} python3-PyQt5 python3-PyQt5-dbus libnotify xdpyinfo" pkg_install() { vmove etc/dbus-1 vmove "usr/bin/backintime-qt*" vmove usr/share/applications vmove usr/share/backintime/qt vmove usr/share/bash-completion/completions/backintime-qt vmove usr/share/dbus-1 vmove usr/share/doc/backintime-qt vmove usr/share/doc/qt vmove usr/share/icons vmove "usr/share/man/man1/backintime-qt*" vmove usr/share/polkit-1 } } ```