diff options
author | nia <nia@pkgsrc.org> | 2022-05-21 09:26:50 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2022-05-21 09:26:50 +0000 |
commit | c632e9dcf5518f8c1b79cfb8ea033d68d48e9d29 (patch) | |
tree | d35a0be19a8cc74098f5ea4db2d52d5166321134 /mk/compiler | |
parent | 7de6398ead1d4859e79674f188193cd89c4bd2a8 (diff) | |
download | pkgsrc-c632e9dcf5518f8c1b79cfb8ea033d68d48e9d29.tar.gz |
gcc.mk: fix syntax
Diffstat (limited to 'mk/compiler')
-rw-r--r-- | mk/compiler/gcc.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/compiler/gcc.mk b/mk/compiler/gcc.mk index 78f578f60a1..cdf663ca7ea 100644 --- a/mk/compiler/gcc.mk +++ b/mk/compiler/gcc.mk @@ -1,4 +1,4 @@ -# $NetBSD: gcc.mk,v 1.240 2022/05/21 09:04:50 nia Exp $ +# $NetBSD: gcc.mk,v 1.241 2022/05/21 09:26:50 nia Exp $ # # This is the compiler definition for the GNU Compiler Collection. # @@ -272,7 +272,7 @@ _GCC_REQD= ${_GCC_STRICTEST_REQD} _NEED_GCC7?= no .for _pattern_ in ${_GCC7_PATTERNS} . if !empty(_GCC_REQD:M${_pattern_}) -. if ${OPSYS} == "NetBSD"" && ${OPSYS_VERSION} < 089937 +. if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 089937 USE_PKGSRC_GCC= yes USE_PKGSRC_GCC_RUNTIME= yes . endif @@ -282,7 +282,7 @@ _NEED_GCC7= yes _NEED_GCC8?= no .for _pattern_ in ${_GCC8_PATTERNS} . if !empty(_GCC_REQD:M${_pattern_}) -. if ${OPSYS} == "NetBSD"" && ${OPSYS_VERSION} < 099917 +. if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099917 USE_PKGSRC_GCC= yes USE_PKGSRC_GCC_RUNTIME= yes . endif @@ -292,7 +292,7 @@ _NEED_GCC8= yes _NEED_GCC9?= no .for _pattern_ in ${_GCC9_PATTERNS} . if !empty(_GCC_REQD:M${_pattern_}) -. if ${OPSYS} == "NetBSD"" && ${OPSYS_VERSION} < 099976 +. if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099976 USE_PKGSRC_GCC= yes USE_PKGSRC_GCC_RUNTIME= yes . endif @@ -302,7 +302,7 @@ _NEED_GCC9= yes _NEED_GCC10?= no .for _pattern_ in ${_GCC10_PATTERNS} . if !empty(_GCC_REQD:M${_pattern_}) -. if ${OPSYS} == "NetBSD"" && ${OPSYS_VERSION} < 099982 +. if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099982 USE_PKGSRC_GCC= yes USE_PKGSRC_GCC_RUNTIME= yes . endif |