aboutsummaryrefslogtreecommitdiffstats
path: root/math/scalapack
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2005-07-06 10:05:48 +0800
committermaho <maho@FreeBSD.org>2005-07-06 10:05:48 +0800
commit4b4a04c7c9523f174f9e64c52748ebc6930587e9 (patch)
tree3aa93fe421cad606043d104dadd339452a6f144b /math/scalapack
parent33cfccadaf9f311bc17bf50f3e8259a322aea5ef (diff)
downloadfreebsd-ports-gnome-4b4a04c7c9523f174f9e64c52748ebc6930587e9.tar.gz
freebsd-ports-gnome-4b4a04c7c9523f174f9e64c52748ebc6930587e9.tar.zst
freebsd-ports-gnome-4b4a04c7c9523f174f9e64c52748ebc6930587e9.zip
.else if should be .elif or .elseif
Submitted by: joe, kris
Diffstat (limited to 'math/scalapack')
-rw-r--r--math/scalapack/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/scalapack/Makefile b/math/scalapack/Makefile
index 6197e6986659..b4cd1f6e336a 100644
--- a/math/scalapack/Makefile
+++ b/math/scalapack/Makefile
@@ -47,7 +47,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message
.if ${ARCH} == "amd64"
FFLAGS+= -pipe -O3 -ffast-math -funroll-all-loops -fpeel-loops -ftracer -funswitch-loops -funit-at-a-time
CFLAGS+= -pipe -O3 -ffast-math -funroll-all-loops -fpeel-loops -ftracer -funswitch-loops -funit-at-a-time
-.else if ${ARCH} == "i386"
+.elif ${ARCH} == "i386"
FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double -mcpu=i686 -march=i686 -mfancy-math-387 -mpreferred-stack-boundary=3
CFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double -mcpu=i686 -march=i686 -mfancy-math-387 -mpreferred-stack-boundary=3
.else