mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
172421f0bb
- Make sure gmake can be found during the build when PREFIX is different from LOCALBASE [1] - This also fixes fetching the port since the 20170202 snapshot is gone from a lot of mirrors [2] PR: 221883 [1, 2], 222133 [2] Submitted by: frederic.praca@free.fr (based on) [1] Reported by: mayhem30@gmail.com [2] MFH: 2017Q4
25 lines
481 B
Makefile
25 lines
481 B
Makefile
# $FreeBSD$
|
|
|
|
GCC_BRANCH= 6
|
|
GCC_POINT= 4.1
|
|
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
|
|
SNAPSHOT= 20170802
|
|
BUILD_RELEASE= no
|
|
MAIN_PR= 0
|
|
UTIL_PR= 0
|
|
ARMV7_PR= 1
|
|
ARM64_PR= 2
|
|
X86_PR= 1
|
|
|
|
.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
|