Ticket #410: 0001-tell-make-that-doc2tex-may-invoke-submakes.patch

File 0001-tell-make-that-doc2tex-may-invoke-submakes.patch, 1.3 KB (added by brlink@…, 12 years ago)
  • doc/Makefile.in

    From c5bb46d29cc28e17e9660e44633b4d3fed30046c Mon Sep 17 00:00:00 2001
    From: "Bernhard R. Link" <brlink@debian.org>
    Date: Sat, 3 Mar 2012 10:24:38 +0100
    Subject: [PATCH] tell make that doc2tex may invoke submakes.
    
    Add a + before commands invoking sub makes in doc/Makefile.in to
    avoid jobserver warnings.
    ---
     doc/Makefile.in |    8 ++++----
     1 files changed, 4 insertions(+), 4 deletions(-)
    
    diff --git a/doc/Makefile.in b/doc/Makefile.in
    index e64b1f5..3f3d199 100644
    a b usercard.ps: usercard.dvi 
    183183# texinfo targets
    184184#
    185185manual.tex:  ${MANUAL_FILES} doc2tex.pl ${SINGULAR} singular.doc $(STANDALONE_TEXI_FILES)
    186         ${DOC2TEX} -no_fun -o manual.tex singular.doc
     186        +${DOC2TEX} -no_fun -o manual.tex singular.doc
    187187
    188188singular.tex: ${MANUAL_FILES} doc2tex.pl ${LIB_TEX_FILES} ${SINGULAR} ${LIBPARSE} singular.doc $(STANDALONE_TEXI_FILES)
    189         ${DOC2TEX} -o singular.tex singular.doc
     189        +${DOC2TEX} -o singular.tex singular.doc
    190190
    191191#pattern rule for tex files
    192192%_noEx.tex : %.doc doc2tex.pl ${SINGULAR}
    193         ${DOC2TEX} -o $@ -no_ex $<
     193        +${DOC2TEX} -o $@ -no_ex $<
    194194
    195195%.tex: %.doc doc2tex.pl ${SINGULAR}
    196         ${DOC2TEX} -o $@ $<
     196        +${DOC2TEX} -o $@ $<
    197197
    198198# pattern rules for lib docus
    199199${DOC_SUBDIR}/%_lib.pl : ${SINGULAR_LIB_DIR}/%.lib ${LIBPARSE}