Skip to content

Commit 71f9f29

Browse files
committed
Problem: Out-of-sync with ZProject
Solution: Run `gsl project.xml`
1 parent 9d3c0df commit 71f9f29

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Diff for: CMakeLists.txt

+6-4
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

Diff for: doc/Makefile.am

+1-1
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)

0 commit comments

Comments
 (0)