summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-05-18 08:27:36 +0000
committerjulie <julielangou@users.noreply.github.com>2011-05-18 08:27:36 +0000
commit4f76bcc13624d55e1749ee352319c777e8e203f5 (patch)
tree316b0c4786c595bdb7b752e7bcfac673ecd97b84 /INSTALL
parent654407606d8ff71a833a9e20016c18f5bd088bff (diff)
downloadlapack-4f76bcc13624d55e1749ee352319c777e8e203f5.tar.gz
lapack-4f76bcc13624d55e1749ee352319c777e8e203f5.tar.bz2
lapack-4f76bcc13624d55e1749ee352319c777e8e203f5.zip
Correction for Tobias.
To get the manpages correcty generated. From Tobias: |RPMLINT prints the following warning - and I think it is correct that Fortran's .NOT. is misread as NOT. macro. Tobias RPMLINT report: =============== lapack-man.noarch: W: manual-page-warning /usr/share/man/man3/slaqr3.3.gz 351: warning: macro `NOT.BULGE' not defined lapack-man.noarch: W: manual-page-warning /usr/share/man/man3/dlaqr3.3.gz 351: warning: macro `NOT.BULGE' not defined lapack-man.noarch: W: manual-page-warning /usr/share/man/man3/lsametst.3.gz 53: warning: macro `NOT.LSAME(' not defined lapack-man.noarch: W: manual-page-warning /usr/share/man/man3/slaqr2.3.gz 317: warning: macro `NOT.BULGE' not defined lapack-man.noarch: W: manual-page-warning /usr/share/man/man3/dlaqr2.3.gz 317: warning: macro `NOT.BULGE' not defined This man page may contain problems that can cause it not to be formatted as intended.|
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL/lsametst.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL/lsametst.f b/INSTALL/lsametst.f
index 4b4f15d3..d51169b9 100644
--- a/INSTALL/lsametst.f
+++ b/INSTALL/lsametst.f
@@ -29,13 +29,13 @@
*
* Test LSAME.
*
- IF( .NOT.LSAME( 'A', 'A' ) )
+ IF( .NOT. LSAME( 'A', 'A' ) )
$ WRITE( *, 9999 )'A', 'A'
- IF( .NOT.LSAME( 'A', 'a' ) )
+ IF( .NOT. LSAME( 'A', 'a' ) )
$ WRITE( *, 9999 )'A', 'a'
- IF( .NOT.LSAME( 'a', 'A' ) )
+ IF( .NOT. LSAME( 'a', 'A' ) )
$ WRITE( *, 9999 )'a', 'A'
- IF( .NOT.LSAME( 'a', 'a' ) )
+ IF( .NOT. LSAME( 'a', 'a' ) )
$ WRITE( *, 9999 )'a', 'a'
IF( LSAME( 'A', 'B' ) )
$ WRITE( *, 9998 )'A', 'B'