Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 11:17:59 -0400
From:      Carmel NY <carmel_ny@outlook.com>
To:        FreeBSD Ports <freebsd-ports@freebsd.org>
Subject:   Re: net/qt5-network
Message-ID:  <SN6PR04MB5021E19BE9C6273B205F6B7380670@SN6PR04MB5021.namprd04.prod.outlook.com>
In-Reply-To: <20200708134421.GA64200@elch.exwg.net>
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> <20200708134421.GA64200@elch.exwg.net>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 8 Jul 2020 15:44:21 +0200, Christoph Moench-Tegeder stated:
>## 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

Thanks, that was the problem. Interestingly enough, it had never bitten
me in the 'ass' before this, and that is for a period of over a year.

-- 
Carmel



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