From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 661D63858D37 for ; Mon, 6 Jul 2020 14:22:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 661D63858D37 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark@simark.ca Received: from [10.0.0.193] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 178021E793; Mon, 6 Jul 2020 10:22:12 -0400 (EDT) Subject: Re: [PATCH v2 2/7] Add "help news" From: Simon Marchi To: Tom Tromey , gdb-patches@sourceware.org References: <20200623132006.15863-1-tom@tromey.com> <20200623132006.15863-3-tom@tromey.com> <8f06b5c2-829d-9baa-910e-fbc8dcf1748b@simark.ca> Message-ID: <3ad4bc4d-9817-49ce-411e-ea77199dd06f@simark.ca> Date: Mon, 6 Jul 2020 10:22:11 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <8f06b5c2-829d-9baa-910e-fbc8dcf1748b@simark.ca> Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jul 2020 14:22:13 -0000 On 2020-07-06 10:06 a.m., Simon Marchi wrote: > (3) Since we look for the NEWS file at /NEWS, I presume it won't > work when running GDB in its build directory, either with > > ./gdb --data-directory=data-directory > > or > > make run > > since the NEWS file is not there. It's not a big deal, but if you think of an easy > way to make it work, it would be nice. Can we put a symlink from data-directory/NEWS > to NEWS? Ah scratch that, I see that your Makefile change copies NEWS to the data-directory in the build directory, so you already thought about that. Simon