From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23546 invoked by alias); 9 May 2003 20:35:13 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23527 invoked from network); 9 May 2003 20:35:12 -0000 Received: from unknown (HELO rwcrmhc52.attbi.com) (216.148.227.88) by sources.redhat.com with SMTP; 9 May 2003 20:35:12 -0000 Received: from lucon.org (12-234-88-5.client.attbi.com[12.234.88.5]) by attbi.com (rwcrmhc52) with ESMTP id <2003050920351205200aff2pe>; Fri, 9 May 2003 20:35:12 +0000 Received: by lucon.org (Postfix, from userid 1000) id 91C592C681; Fri, 9 May 2003 13:35:11 -0700 (PDT) Date: Fri, 09 May 2003 20:35:00 -0000 From: "H. J. Lu" To: GDB Subject: Re: PATCH: Make sure gdb-cfg.texi is created Message-ID: <20030509133511.A6844@lucon.org> References: <20030509122434.A5769@lucon.org> <20030509193206.GA1189@nevyn.them.org> <20030509125943.A6257@lucon.org> <20030509200643.GA22341@nevyn.them.org> <20030509131049.A6435@lucon.org> <20030509201835.GA27906@nevyn.them.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030509201835.GA27906@nevyn.them.org>; from drow@mvista.com on Fri, May 09, 2003 at 04:18:35PM -0400 X-SW-Source: 2003-05/txt/msg00142.txt.bz2 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 398 On Fri, May 09, 2003 at 04:18:35PM -0400, Daniel Jacobowitz wrote: > Maybe I'm missing something obvious. The link will be created to point > at /export/gnu/src/gdb/gdb/gdb/doc/all-cfg.texi. Whether > ../../../../../import/gdb/src/gdb/doc/all-cfg.texi exists from that > directory does not matter. It will be resolved from the directory > containing the second symlink. > It is a typo. H.J. --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gdb-link.patch" Content-length: 637 2003-05-09 H.J. Lu * Makefile.in (gdb-cfg.texi): Fix a typo. --- gdb/doc/Makefile.in.link 2003-04-02 16:40:17.000000000 -0800 +++ gdb/doc/Makefile.in 2003-05-09 13:33:23.000000000 -0700 @@ -245,7 +245,7 @@ GDBvn.texi : ${gdbdir}/version.in # not one for their binary config---which may not be specifically # defined anyways). gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi - (test "$$LN_S" = "ln -s" && \ + (test "$(LN_S)" = "ln -s" && \ ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \ ln ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \ cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi --Nq2Wo0NMKNjxTN9z--