Date: Thu, 15 Apr 2021 17:01:38 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b2993cf7f634 - main - biology/ngs-sdk: Fix build on non-amd64 architectures that was broken by explicit 'amd64' instead of $ARCH Message-ID: <202104151701.13FH1cPp056792@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=b2993cf7f634f1cacc48e1557f335926fc3efd93 commit b2993cf7f634f1cacc48e1557f335926fc3efd93 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-04-15 16:54:04 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2021-04-15 17:01:31 +0000 biology/ngs-sdk: Fix build on non-amd64 architectures that was broken by explicit 'amd64' instead of $ARCH Reported by: fallout --- biology/ngs-sdk/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biology/ngs-sdk/Makefile b/biology/ngs-sdk/Makefile index 6382f767caa6..21517e76a934 100644 --- a/biology/ngs-sdk/Makefile +++ b/biology/ngs-sdk/Makefile @@ -35,7 +35,7 @@ do-install: # install target from the project breaks: https://github.com/ncbi/ng cd ${WRKSRC}/ngs-sdk && ${COPYTREE_SHARE} ngs ${STAGEDIR}${PREFIX}/include ${RM} -r ${STAGEDIR}${PREFIX}/include/ngs/win # install libraries - cd ${WRKSRC}/build/ngs-sdk/FreeBSD/clang/amd64/rel/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib + cd ${WRKSRC}/build/ngs-sdk/FreeBSD/clang/${ARCH}/rel/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib # The above command installs broken-looking static libs with symlinks. # This is intentional, see comments https://github.com/ncbi/ncbi-vdb/issues/36#issuecomment-817990790 This may change in future versions. # strip
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104151701.13FH1cPp056792>