1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00

- Minor fix in OSVERSION check. The last comparison should be "< 1200000"

Reported by:	Tomoaki AOKI <junchoon@dec.sakura.ne.jp>
MFH:		2017Q1 (blanket)
This commit is contained in:
Carlos J. Puga Medina 2017-01-17 12:34:27 +00:00
parent 7912a34d61
commit 46841637cd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=431730

View File

@ -196,7 +196,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-10
.endif
.if ${OSVERSION} >= 1200017 || (${OSVERSION} >= 1100508 && ${OSVERSION} <= 1200000)
.if ${OSVERSION} >= 1200017 || (${OSVERSION} >= 1100508 && ${OSVERSION} < 1200000)
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libc++-new
.else
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libc++-old