Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 09:53:40 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r541476 - branches/2020Q3/emulators/simh-hp2100
Message-ID:  <202007080953.0689reIC021464@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Jul  8 09:53:40 2020
New Revision: 541476
URL: https://svnweb.freebsd.org/changeset/ports/541476

Log:
  MFH: r541475
  
  emulators/simh-hp2100: fix build on GCC architectures
  
  GCC architectures don't have clang. Tested to build on both 12.1 with GCC and head with LLVM.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/emulators/simh-hp2100/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/emulators/simh-hp2100/Makefile
==============================================================================
--- branches/2020Q3/emulators/simh-hp2100/Makefile	Wed Jul  8 09:52:15 2020	(r541475)
+++ branches/2020Q3/emulators/simh-hp2100/Makefile	Wed Jul  8 09:53:40 2020	(r541476)
@@ -34,7 +34,7 @@ SUB_FILES=	hp2100.1
 .include <bsd.port.pre.mk>
 
 do-build:
-	(cd ${WRKSRC}; GCC=clang ${GMAKE} -C SCP hp2100)
+	(cd ${WRKSRC}; GCC="${CC}" ${GMAKE} -C SCP hp2100)
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/hp2100 ${STAGEDIR}${PREFIX}/bin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007080953.0689reIC021464>