From 9d3c0df30e005e89b1341c6e13ea41b2e54f943f Mon Sep 17 00:00:00 2001 From: Brian H Date: Fri, 5 Apr 2024 19:53:18 -0400 Subject: [PATCH 1/2] Problem: Misspelling Solution: comitted => committed --- zproject_autotools.gsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zproject_autotools.gsl b/zproject_autotools.gsl index cd920b3c..e772579c 100644 --- a/zproject_autotools.gsl +++ b/zproject_autotools.gsl @@ -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) From 71f9f2916c0d0a98e3992ed1cd0aefdfeb6bd3cc Mon Sep 17 00:00:00 2001 From: Brian H Date: Fri, 5 Apr 2024 19:53:55 -0400 Subject: [PATCH 2/2] Problem: Out-of-sync with ZProject Solution: Run `gsl project.xml` --- CMakeLists.txt | 10 ++++++---- doc/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be427a4b..3fe8f44e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/doc/Makefile.am b/doc/Makefile.am index a94e6852..b5eeee54 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -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)