Date: Wed, 8 Jul 2020 15:44:21 +0200 From: Christoph Moench-Tegeder <cmt@burggraben.net> To: FreeBSD Ports <freebsd-ports@freebsd.org> Subject: Re: net/qt5-network Message-ID: <20200708134421.GA64200@elch.exwg.net> In-Reply-To: <SN6PR04MB50216B4D1C58BECC963DF21580670@SN6PR04MB5021.namprd04.prod.outlook.com> References: <SN6PR04MB5021DA21A30AAC63F9FB46BA80670@SN6PR04MB5021.namprd04.prod.outlook.com> <CAOshKtce%2BuvKpBeTLHwPK4aJ_kXTuDhox=3HhRiS1Bzf10_rKA@mail.gmail.com> <SN6PR04MB5021845DFE64F2B91AE2D65880670@SN6PR04MB5021.namprd04.prod.outlook.com> <CALH631mJ6FhmQicWEfLp9NoZGonPYTOOR=%2BOW%2BnzXBN38KwjjA@mail.gmail.com> <SN6PR04MB50216B4D1C58BECC963DF21580670@SN6PR04MB5021.namprd04.prod.outlook.com>
next in thread | previous in thread | raw e-mail | index | archive | help
## Carmel NY (carmel_ny@outlook.com): > The entire build log, what there is of it, is available here: > https://seibercom.net/logs/qt5-network_build.log And there's your problem: : #### /usr/local/etc/poudriere.d/make.conf #### : : LICENSES_ACCEPTED+= PDFlib : DEFAULT_VERSIONS=samba=4.11 : DEFAULT_VERSIONS+=ssl=openssl : DEFAULT_VERSIONS=mysql=8.0 : DEFAULT_VERSIONS=python=3.7 : DEFAULT_VERSIONS=python3=3.7 You are setting DEFAULT_VERSIONS multiple times, always writing over the previous assignment (except for that one line for "ssl=openssl", but that's overwritten with the next line again). Either use DEFAULT_VERSIONS=samba=4.11 ssl=openssl mysql=8.0 [...] or DEFAULT_VERSIONS+=samba=4.11 DEFAULT_VERSIONS+=ssl=openssl DEFAULT_VERSIONS+=mysql=8.0 [...] If you use the multiline version, use "+=" consistenly - it's way too easy to copy the first line and accidently use "=" (assignment, not addition). See make(1), section "VARIABLE ASSIGNMENTS" for details on that syntax. BTW, the same goes for WITH_DEBUG_PORTS. Didn't you notice that you got wrong mysql and samba versions? Also, you can use "make -V DEFAULT_VERSIONS" in any port directory to check your settings (as far as they're in /etc/make.conf). Regards, Christoph -- Spare Space
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20200708134421.GA64200>