emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: master 9e94509 3/3: Generate info/dir directly from any org sources


From: Basil L. Contovounesios
Subject: Re: master 9e94509 3/3: Generate info/dir directly from any org sources
Date: Sat, 06 Mar 2021 17:37:20 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Andreas Schwab <schwab@linux-m68k.org> writes:

> On Mär 06 2021, Basil L. Contovounesios wrote:
>
>> diff --git a/Makefile.in b/Makefile.in
>> index 856c29a453..fc5381bc3e 100644
>> --- a/Makefile.in
>> +++ b/Makefile.in
>> @@ -1008,13 +1008,17 @@ misc-dvi misc-html misc-pdf misc-ps:
>>  
>>  info-dir: ${srcdir}/info/dir
>>  
>> +# FIXME: This subshell output can be interspersed with parallel Make
>> +# output.  The current workaround is to filter only words that look
>> +# like the file names we expect.  An alternative workaround is to pass
>> +# the -O option, but that is not supported by older Make versions.
>>  texi_misc = $(shell ${MAKE} --no-print-directory -s -C doc/misc 
>> echo-sources)
>
> Does it help to add -j1?

To this shell command?  Sadly no, because I think the interspersed
output is coming from the parent jobs, not the subshell.

  texi_misc = $(shell ${MAKE} --no-print-directory -j1 -s -C doc/misc 
echo-sources)
  $(info ${texi_misc})

gives the following output with 'make -j16 bootstrap':

  config.status: executing src/epaths.h commands
  make[2]: Entering directory '/home/blc/.local/src/emacs'
  make[2]: warning: -j1 forced in submake: resetting jobserver mode.
  make[2]: Entering directory '/home/blc/.local/src/emacs' auth.texi
  autotype.texi bovine.texi calc.texi cc-mode.texi cl.texi dbus.texi
  dired-x.texi ebrowse.texi ede.texi ediff.texi edt.texi efaq.texi
  eieio.texi emacs-gnutls.texi emacs-mime.texi epa.texi erc.texi
  ert.texi eshell.texi eudc.texi eww.texi flymake.texi forms.texi
  gnus.texi htmlfontify.texi idlwave.texi ido.texi info.texi
  mairix-el.texi message.texi mh-e.texi modus-themes.org newsticker.texi
  nxml-mode.texi octave-mode.texi org.org pcl-cvs.texi pgg.texi
  rcirc.texi reftex.texi remember.texi sasl.texi sc.texi semantic.texi
  ses.texi sieve.texi smtpmail.texi speedbar.texi srecode.texi
  todo-mode.texi tramp.texi url.texi vhdl-mode.texi vip.texi viper.texi
  widget.texi wisent.texi woman.texi make[2]: Leaving directory
  '/home/blc/.local/src/emacs/doc/misc'
  make[2]: warning: -j1 forced in submake: resetting jobserver mode.
  Makefile:1033: *** multiple target patterns.  Stop.
  make[2]: Leaving directory '/home/blc/.local/src/emacs'
  config.status: error: 'src/epaths.h' could not be made.
  make[1]: *** [Makefile:446: force-Makefile] Error 2
  make[1]: Leaving directory '/home/blc/.local/src/emacs'
  make: *** [Makefile:1141: bootstrap] Error 2

-- 
Basil



reply via email to

[Prev in Thread] Current Thread [Next in Thread]