Skip to content

Commit

Permalink
Merge pull request #1335 from BHare1985/fix-misspelling
Browse files Browse the repository at this point in the history
Problem: Fix misspelling & out-of-sync zproject
  • Loading branch information
sappo authored Jul 26, 2024
2 parents 86b86d8 + 71f9f29 commit c9eaee6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,13 @@ set(OPTIONAL_LIBRARIES_STATIC)
########################################################################
# GSL dependency
########################################################################
find_package(gsl REQUIRED)
IF (GSL_FOUND)
ELSE (GSL_FOUND)
IF (NOT gsl_FOUND)
find_package(gsl REQUIRED)
ENDIF(NOT gsl_FOUND)
IF (gsl_FOUND)
ELSE (gsl_FOUND)
message( FATAL_ERROR "gsl not found." )
ENDIF (GSL_FOUND)
ENDIF (gsl_FOUND)

########################################################################
# version
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MAN1 =
MAN3 =
# Project overview, written by a human after initial skeleton:
# NOTE: stub doc/zproject.adoc is generated by GSL from project.xml
# and then comitted to SCM and maintained manually to describe the
# and then committed to SCM and maintained manually to describe the
# project (section 7 = Overview, conventions, and miscellaneous).
MAN7 = zproject.7
MAN_DOC = $(MAN1) $(MAN3) $(MAN7)
Expand Down
2 changes: 1 addition & 1 deletion zproject_autotools.gsl
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,7 @@ MAN1 =$(man1)
MAN3 =$(man3:no)
# Project overview, written by a human after initial skeleton:
# NOTE: stub doc/$(project.name).adoc is generated by GSL from project.xml
# and then comitted to SCM and maintained manually to describe the
# and then committed to SCM and maintained manually to describe the
# project (section 7 = Overview, conventions, and miscellaneous).
MAN7 = $(man7)
MAN_DOC = $\(MAN1) $\(MAN3) $\(MAN7)
Expand Down

0 comments on commit c9eaee6

Please sign in to comment.