diff options
author | gerald <gerald@FreeBSD.org> | 2010-06-07 03:15:03 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2010-06-07 03:15:03 +0800 |
commit | 9e6b05898aa0f314786d557f8d5442836ca2c060 (patch) | |
tree | a0923f995bcbbe63fc604898eff90292b0fc3117 /Mk/bsd.gcc.mk | |
parent | 9b26e80e5194f50f3dc7af68057bf0544b91dd47 (diff) | |
download | freebsd-ports-gnome-9e6b05898aa0f314786d557f8d5442836ca2c060.tar.gz freebsd-ports-gnome-9e6b05898aa0f314786d557f8d5442836ca2c060.tar.zst freebsd-ports-gnome-9e6b05898aa0f314786d557f8d5442836ca2c060.zip |
Tweak a conditional added in the previous commit that apparently causes
troubles in some cases.
Diffstat (limited to 'Mk/bsd.gcc.mk')
-rw-r--r-- | Mk/bsd.gcc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index f3e94290d6a1..cad2ef6d80ed 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -118,8 +118,8 @@ MAKE_ENV+= F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}" .if defined(USE_GCC) # USE_GCC=4.3 is deprecated... -.if ${USE_GCC} == 4.3+ -USE_GCC:=4.4+ +.if ${USE_GCC} == "4.3+" +USE_GCC=4.4+ .endif # See if we can use a later version |