unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Basil L. Contovounesios" <contovob@tcd.ie>
To: Glenn Morris <rgm@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: master 9e94509 3/3: Generate info/dir directly from any org sources
Date: Sat, 06 Mar 2021 11:51:30 +0000	[thread overview]
Message-ID: <87sg58wldp.fsf@tcd.ie> (raw)
In-Reply-To: <0i7dmlxvds.fsf@fencepost.gnu.org> (Glenn Morris's message of "Fri, 05 Mar 2021 14:17:51 -0500")

[-- Attachment #1: Type: text/plain, Size: 2700 bytes --]

Glenn Morris <rgm@gnu.org> writes:

> "Basil L. Contovounesios" wrote:
>
>>   Makefile:1031: *** multiple target patterns.  Stop.
>
> I would look at what:
>   make --no-print-directory -s -C doc/misc echo-sources
> outputs for you. Perhaps something with a colon?

No, but $(info ${info_dir_deps}) does:

  config.status: executing src/epaths.h commands
  make[2]: Entering directory '/home/blc/.local/src/emacs'
  make[2]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
  ./build-aux/make-info-dir ./build-aux/dir_top ./doc/emacs/emacs.texi
  ./doc/lispintro/emacs-lisp-intro.texi ./doc/lispref/elisp.texi
  ./doc/misc/make[2]: ./doc/misc/Entering ./doc/misc/directory
  ./doc/misc/'/home/blc/.local/src/emacs' ./doc/misc/auth.texi
  ./doc/misc/autotype.texi ./doc/misc/bovine.texi ./doc/misc/calc.texi
  ./doc/misc/cc-mode.texi ./doc/misc/cl.texi ./doc/misc/dbus.texi
  ./doc/misc/dired-x.texi ./doc/misc/ebrowse.texi ./doc/misc/ede.texi
  ./doc/misc/ediff.texi ./doc/misc/edt.texi ./doc/misc/efaq.texi
  ./doc/misc/eieio.texi ./doc/misc/emacs-gnutls.texi
  ./doc/misc/emacs-mime.texi ./doc/misc/epa.texi ./doc/misc/erc.texi
  ./doc/misc/ert.texi ./doc/misc/eshell.texi ./doc/misc/eudc.texi
  ./doc/misc/eww.texi ./doc/misc/flymake.texi ./doc/misc/forms.texi
  ./doc/misc/gnus.texi ./doc/misc/htmlfontify.texi
  ./doc/misc/idlwave.texi ./doc/misc/ido.texi ./doc/misc/info.texi
  ./doc/misc/mairix-el.texi ./doc/misc/message.texi ./doc/misc/mh-e.texi
  ./doc/misc/modus-themes.org ./doc/misc/newsticker.texi
  ./doc/misc/nxml-mode.texi ./doc/misc/octave-mode.texi
  ./doc/misc/org.org ./doc/misc/pcl-cvs.texi ./doc/misc/pgg.texi
  ./doc/misc/rcirc.texi ./doc/misc/reftex.texi ./doc/misc/remember.texi
  ./doc/misc/sasl.texi ./doc/misc/sc.texi ./doc/misc/semantic.texi
  ./doc/misc/ses.texi ./doc/misc/sieve.texi ./doc/misc/smtpmail.texi
  ./doc/misc/speedbar.texi ./doc/misc/srecode.texi
  ./doc/misc/todo-mode.texi ./doc/misc/tramp.texi ./doc/misc/url.texi
  ./doc/misc/vhdl-mode.texi ./doc/misc/vip.texi ./doc/misc/viper.texi
  ./doc/misc/widget.texi ./doc/misc/wisent.texi ./doc/misc/woman.texi
  ./doc/misc/make[2]: ./doc/misc/Leaving ./doc/misc/directory
  ./doc/misc/'/home/blc/.local/src/emacs/doc/misc'
  make[2]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
  Makefile:1034: *** 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:1142: bootstrap] Error 2

The following seems to work around it.  WDYT?


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-Makefile-subshell-output-when-run-in-parallel.patch --]
[-- Type: text/x-diff, Size: 939 bytes --]

From 7025b840306950f6e934bb970afe51c916786fb8 Mon Sep 17 00:00:00 2001
From: "Basil L. Contovounesios" <contovob@tcd.ie>
Date: Sat, 6 Mar 2021 11:40:48 +0000
Subject: [PATCH] Fix Makefile subshell output when run in parallel

For discussion, see the following thread:
https://lists.gnu.org/r/emacs-devel/2021-03/msg00255.html

* Makefile.in (texi_misc): Avoid interspersing parallel Make output
with that from subshell.
---
 Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.in b/Makefile.in
index 856c29a453..0e16145c0a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1008,7 +1008,7 @@ misc-dvi misc-html misc-pdf misc-ps:
 
 info-dir: ${srcdir}/info/dir
 
-texi_misc = $(shell ${MAKE} --no-print-directory -s -C doc/misc echo-sources)
+texi_misc = $(shell ${MAKE} --no-print-directory -O -s -C doc/misc echo-sources)
 
 srcdir_doc_info_dir_inputs = \
   ${srcdir}/doc/emacs/emacs.texi \
-- 
2.30.1


[-- Attachment #3: Type: text/plain, Size: 20 bytes --]


Thanks,

-- 
Basil

  reply	other threads:[~2021-03-06 11:51 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 [this message]
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
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=87sg58wldp.fsf@tcd.ie \
    --to=contovob@tcd.ie \
    --cc=emacs-devel@gnu.org \
    --cc=rgm@gnu.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).