autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug fix for F77_LIBRARY_LDFLAGS


From: Akim Demaille
Subject: Re: bug fix for F77_LIBRARY_LDFLAGS
Date: 10 Dec 2001 10:49:20 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Civil Service)

Hi Steven.

You are definitely the Fortran maintainer, so just apply it whenever
you want.

+# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where
+# /foo, /bar, and /baz are search directories for the Fortran linker.
+# Here, we change these into -L/foo -L/bar -L/baz:
+ac_f77_v_output="$ac_f77_v_output `echo $ac_f77_v_output | egrep '^ *LPATH 
is:' | sed 's,: */, -L/,g'`"
+

Just a stylistic note: try to remain within 80 cols.  Typically:

ac_f77_v_output="$ac_f77_v_output `echo $ac_f77_v_output | 
                                     egrep '^ *LPATH is:' | 
                                     sed 's,: */, -L/,g'`"

And actually:

ac_f77_v_output="$ac_f77_v_output `echo $ac_f77_v_output | 
                                     sed -n '/^ *LPATH is:/s,: */, -L/,gp'`"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]