diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-10-13 05:36:31 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-10-13 05:36:31 +0000 |
commit | afda2069bf4d9ce248460877c27231ff7b0f1b0d (patch) | |
tree | b07c441a3fd499cddbe6f0b7ed0736b422408ef9 | |
parent | 586aaee6b6c876e33afc21ab79b364eb7343a712 (diff) |
sysutils/b2sum: Use = instead of += for option helper
-rw-r--r-- | sysutils/b2sum/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/b2sum/Makefile b/sysutils/b2sum/Makefile index af4af174cdcc..ad34c476bec9 100644 --- a/sysutils/b2sum/Makefile +++ b/sysutils/b2sum/Makefile @@ -24,7 +24,7 @@ OPTIONS_DEFINE= OPENMP OPTIMIZED_CFLAGS SSE OPTIONS_DEFAULT_amd64= SSE SSE_DESC= Use SSE2, SSSE3, SSE4.1, AVX or XOP instructions -OPENMP_CFLAGS+= -fopenmp +OPENMP_CFLAGS= -fopenmp .include <bsd.port.options.mk> |