diff options
author | Philippe Audeoud <jadawin@FreeBSD.org> | 2010-07-28 07:08:31 +0000 |
---|---|---|
committer | Philippe Audeoud <jadawin@FreeBSD.org> | 2010-07-28 07:08:31 +0000 |
commit | 3a55f1097f9d93d62c8077b055fd8f20d137ab28 (patch) | |
tree | 23473dbbc2e7d8dfed7fe3e5a26fd1380e3fdae8 /graphics/aaphoto | |
parent | 6731353e784ece2b173e9d5e67cf5b53f708d6e2 (diff) |
- Fix build on 6.x on amd64
PR: ports/148964
Submitted by: Andras Horvath <han _AT_ log69.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=258358
Diffstat (limited to 'graphics/aaphoto')
-rw-r--r-- | graphics/aaphoto/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/aaphoto/Makefile b/graphics/aaphoto/Makefile index 353eca4dbd7b..056001b106a2 100644 --- a/graphics/aaphoto/Makefile +++ b/graphics/aaphoto/Makefile @@ -33,7 +33,7 @@ PORTDOCS= AUTHORS ChangeLog COPYING COPYRIGHT INSTALL LICENSE \ .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" || ${ARCH} == "i386" && ${OSVERSION} >= 700000 +.if (${ARCH} == "amd64" || ${ARCH} == "i386") && ${OSVERSION} >= 700000 CFLAGS+= -fopenmp -D__OPENMP__ .endif |