1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

Don't hardcode "gcc48"; it would break after GCC upgrade.

Submitted by:	kwm@
This commit is contained in:
Edward Tomasz Napierala 2015-01-21 13:20:22 +00:00
parent fbf834afa3
commit cc1ec54e41
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=377600
2 changed files with 6 additions and 3 deletions

View File

@ -22,4 +22,7 @@ MAKE_JOBS_UNSAFE= yes
CFLAGS+= "-fPIC"
ONLY_FOR_ARCHS= amd64
post-patch:
@${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g' ${WRKSRC}/Make.defaults
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- Make.defaults.orig 2014-08-08 21:27:21.000000000 +0200
+++ Make.defaults 2014-12-01 02:18:02.000000000 +0100
+++ Make.defaults 2015-01-15 11:13:35.059134709 +0100
@@ -45,14 +45,17 @@ TOPDIR := $(shell if [ "$$PWD" != "" ];
# Where to install the package. GNU-EFI will create and access
# lib and include under the root
@ -16,8 +16,8 @@
# Compilation tools
-HOSTCC := $(prefix)gcc
-CC := $(prefix)$(CROSS_COMPILE)gcc
+HOSTCC := $(prefix)gcc48
+CC := $(prefix)$(CROSS_COMPILE)gcc48
+HOSTCC := $(prefix)%%CC%%
+CC := $(prefix)$(CROSS_COMPILE)%%CC%%
AS := $(prefix)$(CROSS_COMPILE)as
LD := $(prefix)$(CROSS_COMPILE)ld
AR := $(prefix)$(CROSS_COMPILE)ar