diff options
-rw-r--r-- | eclass/cmake.eclass | 5 | ||||
-rw-r--r-- | eclass/dune.eclass | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index bd7e64cfe6c7..094b6d706bc2 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -15,8 +15,7 @@ # @DESCRIPTION: # The cmake eclass makes creating ebuilds for cmake-based packages much easier. # It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with -# out-of-source builds (default), in-source builds and an implementation of the -# well-known use_enable function for CMake. +# out-of-source builds (default) and in-source builds. case ${EAPI} in 7|8) ;; @@ -355,7 +354,7 @@ cmake_src_prepare() { default_src_prepare - # check if CMakeLists.txt exist and if no then die + # check if CMakeLists.txt exists and if not then die if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then eerror "Unable to locate CMakeLists.txt under:" eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" diff --git a/eclass/dune.eclass b/eclass/dune.eclass index 5009648114f5..1061461b6991 100644 --- a/eclass/dune.eclass +++ b/eclass/dune.eclass @@ -11,7 +11,7 @@ # @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Provides functions for installing Dune packages. # @DESCRIPTION: -# Provides dependencies on dDne and OCaml and default src_compile, src_test and +# Provides dependencies on Dune and OCaml and default src_compile, src_test and # src_install for Dune-based packages. # @ECLASS_VARIABLE: DUNE_PKG_NAME |