Date: Tue, 28 Apr 2020 21:25:16 +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: r533276 - branches/2020Q2/net-mgmt/bgpq4 Message-ID: <202004282125.03SLPGCT011886@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Tue Apr 28 21:25:16 2020 New Revision: 533276 URL: https://svnweb.freebsd.org/changeset/ports/533276 Log: MFH: r533275 net-mgmt/bgpq4: fix build on GCC architectures C11 compiler is necessary: cc1: error: unrecognized command line option "-std=gnu11" Adjust MAKE_ARGS because make insists on using cc. Approved by: portmgr (fix build blanket) Modified: branches/2020Q2/net-mgmt/bgpq4/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/net-mgmt/bgpq4/Makefile ============================================================================== --- branches/2020Q2/net-mgmt/bgpq4/Makefile Tue Apr 28 21:21:27 2020 (r533275) +++ branches/2020Q2/net-mgmt/bgpq4/Makefile Tue Apr 28 21:25:16 2020 (r533276) @@ -11,8 +11,10 @@ COMMENT= Lightweight prefix-list generator for various LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT -USES= autoreconf +USES= autoreconf compiler:c11 USE_GITHUB= yes + +MAKE_ARGS+= CC="${CC}" GH_ACCOUNT= bgp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004282125.03SLPGCT011886>