mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
3f7771b68e
This contains some minor fixes for DragonFly's master branch. The patch diffs are less due to freebsd unwind support backport to 5 branch.
23 lines
457 B
Makefile
23 lines
457 B
Makefile
# $FreeBSD$
|
|
|
|
GCC_BRANCH= 5
|
|
GCC_POINT= 2.0
|
|
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
|
|
SNAPSHOT= 20150716
|
|
BUILD_RELEASE= yes
|
|
MAIN_PR= 0
|
|
UTIL_PR= 0
|
|
ARMV7_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
|