Skip to content
Snippets Groups Projects
Commit 3a539fd0 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix accidental introduction of trailing whitespace.

parent bac16949
No related branches found
No related tags found
No related merge requests found
......@@ -26783,11 +26783,13 @@ ac_compile="$ac_pwd/libtool --mode=compile --tag=FC $ac_compile"
*NAG\ Fortran\ Compiler\ Release*) :
if test x${FCFLAGS+set} = xset; then :
FCFLAGS=`echo "$FCFLAGS" | tr ' ' '\n' | sed -e '/^-W[lc]/{' \
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' | tr '\n' ' '`
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' \
| tr '\n' ' ' | sed -e 's/ $//'`
fi
if test x${FCLDFLAGS+set} = xset; then :
FCLDFLAGS=`echo "$FCLDFLAGS" | tr ' ' '\n' | sed -e '/^-W[lc]/{' \
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' | tr '\n' ' '`
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' \
| tr '\n' ' ' | sed -e 's/ $//'`
fi ;; #(
*) :
;;
......@@ -26822,11 +26824,13 @@ ac_compile="$ac_pwd/libtool --mode=compile --tag=F77 $ac_compile"
*NAG\ Fortran\ Compiler\ Release*) :
if test x${FFLAGS+set} = xset; then :
FFLAGS=`echo "$FFLAGS" | tr ' ' '\n' | sed -e '/^-W[lc]/{' \
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' | tr '\n' ' '`
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' \
| tr '\n' ' ' | sed -e 's/ $//'`
fi
if test x${F77LDFLAGS+set} = xset; then :
F77LDFLAGS=`echo "$F77LDFLAGS" | tr ' ' '\n' | sed -e '/^-W[lc]/{' \
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' | tr '\n' ' '`
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' \
| tr '\n' ' ' | sed -e 's/ $//'`
fi ;; #(
*) :
;;
......@@ -38,7 +38,8 @@ dnl _ACX_LT_FLAGS_MANGLE
m4_define([nag_filter_flag_var],
[AS_IF([test x${$1+set} = xset],
[$1=`echo "$][$1" | tr ' ' '\n' | sed -e '/^-W@<:@lc@:>@/{' \
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' | tr '\n' ' '`])])
-e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc\)/-Xcompiler \1/' -e '}' \
| tr '\n' ' ' | sed -e 's/ $//'`])])
AC_DEFUN([_ACX_LT_FORT_FLAGS_MANGLE],
[_AC_FORTRAN_ASSERT
AC_LANG_CASE([Fortran],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment