mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
098c24f14a
Remove the recently added ARM patch. This port has always been limited to amd64 and i386 so patching ARM code has no effect.
24 lines
469 B
Makefile
24 lines
469 B
Makefile
# $FreeBSD$
|
|
|
|
GCC_BRANCH= 5
|
|
GCC_POINT= 4.0
|
|
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
|
|
SNAPSHOT= 20160603
|
|
BUILD_RELEASE= yes
|
|
MAIN_PR= 0
|
|
UTIL_PR= 0
|
|
ARMV7_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
|