diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 20:55:27 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 20:55:27 +0000 |
commit | 0f88ed614d3de9ed46c41028cf2f22975eeff57a (patch) | |
tree | f4519572010b06eda59dede8d41490eef53b4983 /net/mpich2 | |
parent | 7ff153a552ed208bcb8c6492a42b161f05676a3f (diff) | |
download | ports-0f88ed614d3de9ed46c41028cf2f22975eeff57a.tar.gz ports-0f88ed614d3de9ed46c41028cf2f22975eeff57a.zip |
Repair instances, almost all courtesy of bf ;-), of spaces
and/or tabs before the =. This made doing regular expressions
on the ports tree really difficult.
Approved by: portmgr (not really, but touches unstaged ports)
Notes
Notes:
svn path=/head/; revision=363390
Diffstat (limited to 'net/mpich2')
-rw-r--r-- | net/mpich2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile index df53749607aa..38977e277c50 100644 --- a/net/mpich2/Makefile +++ b/net/mpich2/Makefile @@ -47,7 +47,7 @@ CONFIGURE_ENV= FCFLAGS="${FFLAGS}" \ CPPFLAGS+= -I${LOCALBASE}/include .if ${FFLAGS} == "-O" -FFLAGS = -O2 +FFLAGS= -O2 .endif LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo ${PTHREAD_LIBS} @@ -75,7 +75,7 @@ PLIST_SUB+= JAVA="@comment " PLX11= "@comment " .else .if ! ${PORT_OPTIONS:MX11} -IGNORE = WITH_JAVA requires WITH_X11 +IGNORE= WITH_JAVA requires WITH_X11 .endif CONFIGURE_ARGS+= --with-java="${JAVA_HOME}" USE_JAVA= yes |