This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[hjl@lucon.org: Re: Strange line in ltconfig]
- From: "H. J. Lu" <hjl at lucon dot org>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sun, 5 Oct 2003 12:24:26 -0700
- Subject: [hjl@lucon.org: Re: Strange line in ltconfig]
----- Forwarded message from "H. J. Lu" <hjl@lucon.org> -----
Date: Fri, 3 Oct 2003 21:56:16 -0700
From: "H. J. Lu" <hjl@lucon.org>
To: Alexandre Oliva <aoliva@redhat.com>
Cc: gcc@gcc.gnu.org, binutils@sources.redhat.com
Subject: Re: Strange line in ltconfig
User-Agent: Mutt/1.4.1i
On Sat, Oct 04, 2003 at 01:12:37AM -0300, Alexandre Oliva wrote:
> On Oct 2, 2003, Carlo Wood <carlo@alinoe.com> wrote:
>
> > On Thu, Oct 02, 2003 at 11:25:38AM -0700, H. J. Lu wrote:
> >> In ltconfig, there are
> >>
> >> if test "X$HPUX_IA64_MODE" = X32; then
> >> sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32/usr/local/lib"
> >> else
> >> sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
> >> fi
> >>
> >> What is /usr/local/lib/hpux32/usr/local/lib?
>
> > That must be a typo, there is space missing.
>
> It is, indeed. Libtool mainline has a blank there. Obvious patch for
> the GCC tree approved.
>
This is the patch I checked in.
H.J.
---
2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
* ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
Index: ltconfig
===================================================================
RCS file: /cvs/src/src/ltconfig,v
retrieving revision 1.19
diff -u -p -r1.19 ltconfig
--- ltconfig 29 May 2003 14:02:04 -0000 1.19
+++ ltconfig 4 Oct 2003 04:50:23 -0000
@@ -1179,7 +1179,7 @@ hpux9* | hpux10* | hpux11*)
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
if test "X$HPUX_IA64_MODE" = X32; then
- sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32/usr/local/lib"
+ sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
else
sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
fi
----- End forwarded message -----