From b8aa34ce245c312e882989f0e1d7f7a0215e4f68 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 10 Jun 2014 09:27:52 +0200 Subject: [PATCH] xbps-src: hooks/create-xbps-vpkg-files: create vpkg conf files in usr/share/xbps/virtualpkg.d. --- common/hooks/post-install/04-create-xbps-vpkg-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/post-install/04-create-xbps-vpkg-files.sh b/common/hooks/post-install/04-create-xbps-vpkg-files.sh index a5f6ff13052..db9794cfe0d 100644 --- a/common/hooks/post-install/04-create-xbps-vpkg-files.sh +++ b/common/hooks/post-install/04-create-xbps-vpkg-files.sh @@ -11,7 +11,7 @@ hook() { for f in ${provides}; do echo "virtualpkg=${f}:${pkgname}" >>${_tmpf} done - install -Dm644 ${_tmpf} ${PKGDESTDIR}/etc/xbps/virtualpkg.d/${pkgname}.vpkg + install -Dm644 ${_tmpf} ${PKGDESTDIR}/usr/share/xbps/virtualpkg.d/${pkgname}.conf rm -f ${_tmpf} fi }