mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
28 lines
724 B
Makefile
28 lines
724 B
Makefile
# The attempt to upgrade to version 6.4.1 was done incorrectly.
|
|
# When 6.5.1 is released, set the SNAPSHOT to the release date,
|
|
# but also set BUILD_RELEASE to "yes". Otherwise snapshots will
|
|
# continue to be used and eventually be removed from mirrors.
|
|
|
|
GCC_BRANCH= 6
|
|
GCC_POINT= 4.1
|
|
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
|
|
SNAPSHOT= 20180516
|
|
BUILD_RELEASE= no
|
|
MAIN_PR= 2
|
|
UTIL_PR= 0
|
|
ARMV7_PR= 0
|
|
ARM64_PR= 0
|
|
X86_PR= 0
|
|
|
|
.if ${BUILD_RELEASE:Mno}
|
|
# Snapshot naming pattern
|
|
IDENTIFICATION= gcc-${GCC_BRANCH}-${SNAPSHOT}
|
|
MS_SUBDIR= snapshots/${GCC_BRANCH}-${SNAPSHOT}
|
|
PHASE= snapshot
|
|
.else
|
|
# Release naming pattern
|
|
IDENTIFICATION= gcc-${GCC_VERSION}
|
|
MS_SUBDIR= releases/gcc-${GCC_VERSION}
|
|
PHASE= release
|
|
.endif
|