Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 09:52:16 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541475 - head/emulators/simh-hp2100
Message-ID:  <202007080952.0689qG46021247@repo.freebsd.org>

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

Log:
  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.
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/emulators/simh-hp2100/Makefile

Modified: head/emulators/simh-hp2100/Makefile
==============================================================================
--- head/emulators/simh-hp2100/Makefile	Wed Jul  8 09:40:35 2020	(r541474)
+++ head/emulators/simh-hp2100/Makefile	Wed Jul  8 09:52:15 2020	(r541475)
@@ -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?202007080952.0689qG46021247>