Re: bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
On Fri, Jan 15, 2016 at 09:17:38AM -0800, Bryan Drewery wrote: > On 1/15/16 9:04 AM, Slawa Olhovchenkov wrote: > > On Fri, Jan 08, 2016 at 01:01:45PM -0800, Bryan Drewery wrote: > > > >> On 1/8/2016 12:58 PM, Bryan Drewery wrote: > >>> On 12/23/2015 11:52 PM, Slawa Olhovchenkov wrote: > >>>> I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got > >>>> next error: > >>>> > >>>> ===> usr.bin/yacc (obj,depend,all,install) > >>>> bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop > >>>> > >>>> bmake[1]: stopped in /usr/src > >>>> *** Error code 2 > >>>> > >>>> Stop. > >>>> bmake: stopped in /usr/src > >>>> *** [buildworld] Error code 1 > >>>> > >>>> Stop in /usr/src. > >>> > >>> It's a bug in the build for sure. > >>> > >>> .if ${BOOTSTRAPPING} < 102 > >>> _m4=usr.bin/m4 > >>> .endif > >>> > >>> .if ${BOOTSTRAPPING} < 133 > >>> _lex= usr.bin/lex > >>> > >>> ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 > >>> .endif > >>> > >>> Upgrading from 102-132 to latest will not build usr.bin/m4 even > >>> though usr.bin/lex is claiming to need it. > >>> > >>> https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4.diff > >>> should fix it. It's not necessarily the final fix though but it should > >>> let you build for now. > >>> > >> > >> Actually that patch won't suffice according to the change that added the > >> bug: > >> > >> r288829 | ian | 2015-10-05 10:45:13 -0700 (Mon, 05 Oct 2015) | 13 lines > >> > >> The latest version of lex requires the latest m4 to build, add a dependency > >> when running the build-tools stage. > >> > >> The requirement is due to the -P flag used when running m4 from usr.bin/lex > > > > STABLE now in build process, thanks! > > Because this is VIA C3 with 192MB PC133 RAM after day build only > > install includes passed :) > > > > FYI, I committed a patch to stable/10 recently. No custom patch is > needed now. Yes, I am test on last stable, not custom patch. ___ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"
Re: bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
On 1/15/16 9:04 AM, Slawa Olhovchenkov wrote: > On Fri, Jan 08, 2016 at 01:01:45PM -0800, Bryan Drewery wrote: > >> On 1/8/2016 12:58 PM, Bryan Drewery wrote: >>> On 12/23/2015 11:52 PM, Slawa Olhovchenkov wrote: >>>> I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got >>>> next error: >>>> >>>> ===> usr.bin/yacc (obj,depend,all,install) >>>> bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop >>>> >>>> bmake[1]: stopped in /usr/src >>>> *** Error code 2 >>>> >>>> Stop. >>>> bmake: stopped in /usr/src >>>> *** [buildworld] Error code 1 >>>> >>>> Stop in /usr/src. >>> >>> It's a bug in the build for sure. >>> >>> .if ${BOOTSTRAPPING} < 102 >>> _m4=usr.bin/m4 >>> .endif >>> >>> .if ${BOOTSTRAPPING} < 133 >>> _lex= usr.bin/lex >>> >>> ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 >>> .endif >>> >>> Upgrading from 102-132 to latest will not build usr.bin/m4 even >>> though usr.bin/lex is claiming to need it. >>> >>> https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4.diff >>> should fix it. It's not necessarily the final fix though but it should >>> let you build for now. >>> >> >> Actually that patch won't suffice according to the change that added the >> bug: >> >> r288829 | ian | 2015-10-05 10:45:13 -0700 (Mon, 05 Oct 2015) | 13 lines >> >> The latest version of lex requires the latest m4 to build, add a dependency >> when running the build-tools stage. >> >> The requirement is due to the -P flag used when running m4 from usr.bin/lex > > STABLE now in build process, thanks! > Because this is VIA C3 with 192MB PC133 RAM after day build only > install includes passed :) > FYI, I committed a patch to stable/10 recently. No custom patch is needed now. -- Regards, Bryan Drewery ___ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"
Re: bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
On Fri, Jan 08, 2016 at 01:01:45PM -0800, Bryan Drewery wrote: > On 1/8/2016 12:58 PM, Bryan Drewery wrote: > > On 12/23/2015 11:52 PM, Slawa Olhovchenkov wrote: > >> I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got > >> next error: > >> > >> ===> usr.bin/yacc (obj,depend,all,install) > >> bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop > >> > >> bmake[1]: stopped in /usr/src > >> *** Error code 2 > >> > >> Stop. > >> bmake: stopped in /usr/src > >> *** [buildworld] Error code 1 > >> > >> Stop in /usr/src. > > > > It's a bug in the build for sure. > > > > .if ${BOOTSTRAPPING} < 102 > > _m4=usr.bin/m4 > > .endif > > > > .if ${BOOTSTRAPPING} < 133 > > _lex= usr.bin/lex > > > > ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 > > .endif > > > > Upgrading from 102-132 to latest will not build usr.bin/m4 even > > though usr.bin/lex is claiming to need it. > > > > https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4.diff > > should fix it. It's not necessarily the final fix though but it should > > let you build for now. > > > > Actually that patch won't suffice according to the change that added the > bug: > > r288829 | ian | 2015-10-05 10:45:13 -0700 (Mon, 05 Oct 2015) | 13 lines > > The latest version of lex requires the latest m4 to build, add a dependency > when running the build-tools stage. > > The requirement is due to the -P flag used when running m4 from usr.bin/lex STABLE now in build process, thanks! Because this is VIA C3 with 192MB PC133 RAM after day build only install includes passed :) ___ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"
Re: bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
On 1/8/2016 12:58 PM, Bryan Drewery wrote: > On 12/23/2015 11:52 PM, Slawa Olhovchenkov wrote: >> I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got >> next error: >> >> ===> usr.bin/yacc (obj,depend,all,install) >> bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop >> >> bmake[1]: stopped in /usr/src >> *** Error code 2 >> >> Stop. >> bmake: stopped in /usr/src >> *** [buildworld] Error code 1 >> >> Stop in /usr/src. > > It's a bug in the build for sure. > > .if ${BOOTSTRAPPING} < 102 > _m4=usr.bin/m4 > .endif > > .if ${BOOTSTRAPPING} < 133 > _lex= usr.bin/lex > > ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 > .endif > > Upgrading from 102-132 to latest will not build usr.bin/m4 even > though usr.bin/lex is claiming to need it. > > https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4.diff > should fix it. It's not necessarily the final fix though but it should > let you build for now. > Actually that patch won't suffice according to the change that added the bug: r288829 | ian | 2015-10-05 10:45:13 -0700 (Mon, 05 Oct 2015) | 13 lines The latest version of lex requires the latest m4 to build, add a dependency when running the build-tools stage. The requirement is due to the -P flag used when running m4 from usr.bin/lex --- This one should work: https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4-2.diff -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature
Re: bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
On 12/23/2015 11:52 PM, Slawa Olhovchenkov wrote: > I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got > next error: > > ===> usr.bin/yacc (obj,depend,all,install) > bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop > > bmake[1]: stopped in /usr/src > *** Error code 2 > > Stop. > bmake: stopped in /usr/src > *** [buildworld] Error code 1 > > Stop in /usr/src. It's a bug in the build for sure. .if ${BOOTSTRAPPING} < 102 _m4=usr.bin/m4 .endif .if ${BOOTSTRAPPING} < 133 _lex= usr.bin/lex ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 .endif Upgrading from 102-132 to latest will not build usr.bin/m4 even though usr.bin/lex is claiming to need it. https://people.freebsd.org/~bdrewery/patches/stable-10-lex-m4.diff should fix it. It's not necessarily the final fix though but it should let you build for now. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature
bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop
I am try to upgrade very old 10-CURRENT to latest 10-STABLE and got next error: ===> usr.bin/yacc (obj,depend,all,install) bmake[1]: don't know how to make _bootstrap-tools-usr.bin/m4. Stop bmake[1]: stopped in /usr/src *** Error code 2 Stop. bmake: stopped in /usr/src *** [buildworld] Error code 1 Stop in /usr/src. ___ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"