diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-06-03 06:28:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-06-03 06:28:12 +0000 |
commit | e8be6c003e247bf026ed38fc0710dd9ae2a3d1e6 (patch) | |
tree | 716f6edd62e63631c76b4317fccf3c85acf66762 | |
parent | - Update to 2.1.5 (diff) |
Attempt to fix build on !i386 !amd64.
Hat: portmgr
Notes
Notes:
svn path=/head/; revision=255632
-rw-r--r-- | graphics/libjpeg-turbo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/libjpeg-turbo/Makefile b/graphics/libjpeg-turbo/Makefile index 2e64732ee7ea..bdcc7eb3ebae 100644 --- a/graphics/libjpeg-turbo/Makefile +++ b/graphics/libjpeg-turbo/Makefile @@ -28,8 +28,8 @@ BUILD_DEPENDS+= ${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm:install .if ${ARCH} == amd64 CONFIGURE_ARGS= --host x86_64-unknown-freebsd -.elif ${ARCH} == i386 -CONFIGURE_ARGS= --host i386-unknown-freebsd +.else +CONFIGURE_ARGS= --host ${ARCH}-unknown-freebsd .endif pre-configure: |