Skip to content

Commit c9eaee6

Browse files
authored
Merge pull request #1335 from BHare1985/fix-misspelling
Problem: Fix misspelling & out-of-sync zproject
2 parents 86b86d8 + 71f9f29 commit c9eaee6

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,13 @@ set(OPTIONAL_LIBRARIES_STATIC)
101101
########################################################################
102102
# GSL dependency
103103
########################################################################
104-
find_package(gsl REQUIRED)
105-
IF (GSL_FOUND)
106-
ELSE (GSL_FOUND)
104+
IF (NOT gsl_FOUND)
105+
find_package(gsl REQUIRED)
106+
ENDIF(NOT gsl_FOUND)
107+
IF (gsl_FOUND)
108+
ELSE (gsl_FOUND)
107109
message( FATAL_ERROR "gsl not found." )
108-
ENDIF (GSL_FOUND)
110+
ENDIF (gsl_FOUND)
109111

110112
########################################################################
111113
# version

doc/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ MAN1 =
1111
MAN3 =
1212
# Project overview, written by a human after initial skeleton:
1313
# NOTE: stub doc/zproject.adoc is generated by GSL from project.xml
14-
# and then comitted to SCM and maintained manually to describe the
14+
# and then committed to SCM and maintained manually to describe the
1515
# project (section 7 = Overview, conventions, and miscellaneous).
1616
MAN7 = zproject.7
1717
MAN_DOC = $(MAN1) $(MAN3) $(MAN7)

zproject_autotools.gsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2635,7 +2635,7 @@ MAN1 =$(man1)
26352635
MAN3 =$(man3:no)
26362636
# Project overview, written by a human after initial skeleton:
26372637
# NOTE: stub doc/$(project.name).adoc is generated by GSL from project.xml
2638-
# and then comitted to SCM and maintained manually to describe the
2638+
# and then committed to SCM and maintained manually to describe the
26392639
# project (section 7 = Overview, conventions, and miscellaneous).
26402640
MAN7 = $(man7)
26412641
MAN_DOC = $\(MAN1) $\(MAN3) $\(MAN7)

0 commit comments

Comments
 (0)