From: mp39590 Date: Thu, 9 Jul 2015 21:22:26 +0000 (+0300) Subject: [PATCH] Fix direct python call in doc compilation X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=82085e0eef52c255727df9bd58c054207498120d;p=notmuch-archives.git [PATCH] Fix direct python call in doc compilation --- diff --git a/8d/a648dc54f5c9927acc1659abd9807219dd4d64 b/8d/a648dc54f5c9927acc1659abd9807219dd4d64 new file mode 100644 index 000000000..6027cb262 --- /dev/null +++ b/8d/a648dc54f5c9927acc1659abd9807219dd4d64 @@ -0,0 +1,84 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id 72FEE6DE0298 + for ; Thu, 9 Jul 2015 14:22:37 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: -0.57 +X-Spam-Level: +X-Spam-Status: No, score=-0.57 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, + RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, + RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id A4evuyjPO_eW for ; + Thu, 9 Jul 2015 14:22:35 -0700 (PDT) +Received: from mail-la0-f47.google.com (mail-la0-f47.google.com + [209.85.215.47]) + by arlo.cworth.org (Postfix) with ESMTPS id 068466DE009A + for ; Thu, 9 Jul 2015 14:22:35 -0700 (PDT) +Received: by lagx9 with SMTP id x9so253940818lag.1 + for ; Thu, 09 Jul 2015 14:22:32 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:subject:date:message-id; + bh=Q/rOzEtiDvuxhPRLeawHq4R2xAjJeqt6H+jwmloBe5o=; + b=vuLgS55VJYgIXHwCX1jcsg2aIhfmYeCLdd7WqxyrDc8sAW+gTHEfAGh8HQHKqiI2Nc + n01JK3unUDoZ+zWOvaIHt4CpfRuGhFYgFFfylZzXUXIeiqRyi9m84lkykic3Hklb5QIN + hrfp8kUQai4MuCHBg3xhjSEhzZx+A1Acx5xXiQ3iVjkTSb06sh8fE7JZAJHY4ddEl4Im + kp3Uij99+4Nbp7SO1D/dgXzHnSH/zl1QKY8DO+dcAdIptNFJA5NleTdlcQOSGpV8jRgp + Us6xyWbXSb/lN0UGLpQG0/WvM5Na3r+HT3sLBECAjy3fQtaqvZPDb95QL5xPVCFmX3l3 + NFVQ== +X-Received: by 10.112.72.164 with SMTP id e4mr16587692lbv.113.1436476952283; + Thu, 09 Jul 2015 14:22:32 -0700 (PDT) +Received: from edge.my.domain ([91.189.241.106]) + by smtp.gmail.com with ESMTPSA id t1sm1821353lbb.25.2015.07.09.14.22.31 + for + (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); + Thu, 09 Jul 2015 14:22:31 -0700 (PDT) +From: mp39590@gmail.com +To: notmuch@notmuchmail.org +Subject: [PATCH] Fix direct python call in doc compilation +Date: Fri, 10 Jul 2015 00:22:26 +0300 +Message-Id: <1436476946-80010-1-git-send-email-mp39590@gmail.com> +X-Mailer: git-send-email 2.4.5 +X-Mailman-Approved-At: Thu, 09 Jul 2015 14:25:52 -0700 +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.18 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Thu, 09 Jul 2015 21:22:37 -0000 + +From: Mikhail + +--- + doc/Makefile.local | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git doc/Makefile.local doc/Makefile.local +index e209749..8633cfc 100644 +--- doc/Makefile.local ++++ doc/Makefile.local +@@ -7,7 +7,7 @@ SPHINXOPTS := -q + SPHINXBUILD = sphinx-build + DOCBUILDDIR := $(dir)/_build + +-mkdocdeps := python $(srcdir)/$(dir)/mkdocdeps.py ++mkdocdeps := $(PYTHON) $(srcdir)/$(dir)/mkdocdeps.py + + # Internal variables. + ALLSPHINXOPTS := -d $(DOCBUILDDIR)/doctrees $(SPHINXOPTS) $(srcdir)/$(dir) +-- +2.4.5 +