unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Basil L. Contovounesios" <contovob@tcd.ie>
To: Andreas Schwab <schwab@linux-m68k.org>
Cc: "Mattias Engdegård" <mattiase@acm.org>,
	"Eli Zaretskii" <eliz@gnu.org>,
	rgm@gnu.org, emacs-devel@gnu.org
Subject: Re: master 9e94509 3/3: Generate info/dir directly from any org sources
Date: Sat, 06 Mar 2021 17:37:20 +0000	[thread overview]
Message-ID: <87r1ksqj3j.fsf@tcd.ie> (raw)
In-Reply-To: <87czwc42np.fsf@igel.home> (Andreas Schwab's message of "Sat, 06 Mar 2021 18:23:22 +0100")

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	other threads:[~2021-03-06 17:37 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20210304184723.8249.29253@vcs0.savannah.gnu.org>
     [not found] ` <20210304184725.15B2320E1B@vcs0.savannah.gnu.org>
2021-03-05 12:03   ` master 9e94509 3/3: Generate info/dir directly from any org sources Basil L. Contovounesios
2021-03-05 19:17     ` Glenn Morris
2021-03-06 11:51       ` Basil L. Contovounesios
2021-03-06 13:49         ` Lars Ingebrigtsen
2021-03-06 14:09           ` Basil L. Contovounesios
2021-03-06 14:16         ` Mattias Engdegård
2021-03-06 14:51           ` Eli Zaretskii
2021-03-06 15:31             ` Basil L. Contovounesios
2021-03-06 15:51               ` Eli Zaretskii
2021-03-06 17:21                 ` Basil L. Contovounesios
2021-03-06 17:23               ` Andreas Schwab
2021-03-06 17:37                 ` Basil L. Contovounesios [this message]
2021-03-06 18:10                   ` Andreas Schwab
2021-03-06 18:34                     ` Basil L. Contovounesios
2021-03-06 17:28         ` Glenn Morris
2021-03-06 17:41           ` Basil L. Contovounesios
2021-03-06 17:47             ` Glenn Morris
2021-03-06 19:12               ` Glenn Morris
2021-03-06 20:15                 ` Basil L. Contovounesios
2022-01-05 16:58                   ` Philipp Stephani
2022-01-05 17:09                     ` Eli Zaretskii
2021-03-06 20:40                 ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r1ksqj3j.fsf@tcd.ie \
    --to=contovob@tcd.ie \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=mattiase@acm.org \
    --cc=rgm@gnu.org \
    --cc=schwab@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).