Changes between Initial Version and Version 1 of Ticket #66254, comment 4


Ignore:
Timestamp:
Nov 14, 2022, 7:03:23 AM (18 months ago)
Author:
barracuda156
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #66254, comment 4

    initial v1  
    1 Aha, that looks like a bug in Makefile:
     1Makefile has:
    22{{{
    33SUGGESTEDJOBS = =
    444
    55}}}
     6
     7Which is obvious nonsense. Apparently this code in configure does not work correctly:
     8{{{
     9        if test $has_sysctl = yes
     10then :
     11  jobs=$(sysctl -a | awk '/^hw\.ncpu/{print $2}')
     12else $as_nop
     13  jobs=8
     14fi
     15
     16fi
     17SUGGESTEDJOBS=$jobs
     18}}}