From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 084786DE0F86 for ; Mon, 10 Jun 2019 16:50:10 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.046 X-Spam-Level: X-Spam-Status: No, score=-0.046 tagged_above=-999 required=5 tests=[AWL=-0.045, 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 DHxSsXInthJY for ; Mon, 10 Jun 2019 16:50:08 -0700 (PDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTPS id 7A8926DE0ECA for ; Mon, 10 Jun 2019 16:50:08 -0700 (PDT) Received: from remotemail by fethera.tethera.net with local (Exim 4.89) (envelope-from ) id 1haU39-00065C-SA; Mon, 10 Jun 2019 19:50:03 -0400 Received: (nullmailer pid 8650 invoked by uid 1000); Mon, 10 Jun 2019 23:50:23 -0000 From: David Bremner To: Tomi Ollila , notmuch@notmuchmail.org Subject: Re: [PATCH] doc: Don't install emacs docs when they are not built In-Reply-To: References: <20190610104540.12472-1-david@tethera.net> Date: Mon, 10 Jun 2019 20:50:23 -0300 Message-ID: <877e9txao0.fsf@tethera.net> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 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: Mon, 10 Jun 2019 23:50:10 -0000 Tomi Ollila writes: > > Interestingly, in your commit message you mention that changing := to = > makes a difference. I would have thought that assigning INFO_INFO_FILES > with := would have expanded INFO_TEXI_FILES just 2 lines below after > its introduction. Ah. Silly me. The non-working version had the following line in it $(INFO_TEXI_FILES):= $(INFO_TEXI_FILES) $(DOCBUILDDIR)/texinfo/notmuch-emacs.texi The reason that does have _something_ do with variable expansion, just not what I claimed ;). I think I'll go back to the ifeq version, it's more like what we use other places. d