diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-10-25 15:16:31 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-10-25 16:00:07 +0000 |
commit | e1c2ac2fef5e792c69fcf7c42488a271a51a4a57 (patch) | |
tree | b7eff86e9030276a70daba82595e891052f5807a | |
parent | a0ad0ae3ee8ad2defb39da9bdbea460a6ee5e2e6 (diff) | |
download | ports-e1c2ac2fef5e792c69fcf7c42488a271a51a4a57.tar.gz ports-e1c2ac2fef5e792c69fcf7c42488a271a51a4a57.zip |
math/qhull: Fix stage-qa after 6db564e9a16951384daf415e1323e71f71693316
====> Running Q/A tests (stage-qa)
====> Checking for pkg-plist issues (check-plist)
===> Parsing plist
===> Checking for items in STAGEDIR missing from pkg-plist
Error: Orphaned: lib/cmake/Qhull/QhullTargets-%%CMAKE_BUILD_TYPE%%.cmake
===> Checking for items in pkg-plist which are not in STAGEDIR
===> Error: Plist issues found.
*** Error code 1
Stop.
make: stopped in /usr/ports/math/qhull
=>> Error: check-plist failures detected
Approved by: portmgr (blanket)
-rw-r--r-- | math/qhull/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/qhull/Makefile b/math/qhull/Makefile index 07cc4afd6081..1dec31e1a603 100644 --- a/math/qhull/Makefile +++ b/math/qhull/Makefile @@ -27,4 +27,7 @@ PORTDOCS= * DOCS_EXTRA_PATCHES_OFF= ${PATCHDIR}/extra-patch-CMakeLists.txt +post-install: + ${RM} ${STAGEDIR}${PREFIX}/lib/cmake/Qhull/QhullTargets-${CMAKE_BUILD_TYPE:tl}.cmake + .include <bsd.port.mk> |