This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Strange line in ltconfig
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