diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2022-12-10 02:04:15 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2022-12-10 02:04:15 +0000 |
commit | 770266533cbcca9c1b883464b1b8f1d15f2de3af (patch) | |
tree | ae3cedf462b4850d220aaf84fa572a0d0040a1e4 | |
parent | 2022-12-10 01:46:48 UTC (diff) | |
parent | cmake.eclass: comment typo fix (diff) | |
download | gentoo-770266533cbcca9c1b883464b1b8f1d15f2de3af.tar.gz gentoo-770266533cbcca9c1b883464b1b8f1d15f2de3af.tar.bz2 gentoo-770266533cbcca9c1b883464b1b8f1d15f2de3af.zip |
Merge updates from master
-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 |