diff options
author | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2020-12-09 19:33:39 +0000 |
---|---|---|
committer | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2020-12-09 19:33:39 +0000 |
commit | 20d233a5bec5d7ea3b8e0c712529bbebffea0545 (patch) | |
tree | 2284e41ef3af7b548d02a558f5b605c64ed72845 /cad | |
parent | Modify cad/scotch to support int64. (diff) |
- Allow build for i386, because pkg-fallout@ reports build errors for amd64
as well, and it builds properly on my system. So I believe the error is
with pkg-fallout@.
Notes
Notes:
svn path=/head/; revision=557386
Diffstat (limited to 'cad')
-rw-r--r-- | cad/netgen/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cad/netgen/Makefile b/cad/netgen/Makefile index 76af2480f149..2ecbde7fdfe2 100644 --- a/cad/netgen/Makefile +++ b/cad/netgen/Makefile @@ -12,9 +12,8 @@ COMMENT= Automatic 3D tetrahedral mesh generator LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= amd64 # i386 -ONLY_FOR_ARCHS_REASON= relies on rdtsc() call and the TSC is specific to x86 \ - and pkg-fallout@ reports build errors with i386. +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= relies on rdtsc() call and the TSC is specific to x86 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ git:devel/git |