On Wed, 8 Jul 2020 15:44:21 +0200, Christoph Moench-Tegeder stated: >## Carmel NY (carmel...@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 _______________________________________________ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"