diff options
author | Ilya Tumaykin <itumaykin@gmail.com> | 2016-02-05 00:35:52 +0300 |
---|---|---|
committer | Ilya Tumaykin <itumaykin@gmail.com> | 2016-02-05 00:35:52 +0300 |
commit | 78f09609f0f81fa0bb2e83cc0dba2346ada2d975 (patch) | |
tree | 2b96007a03db8d58a5aba951f404e7b9453af5b4 /dev-libs | |
parent | b447fcdf956f7aa5dcf43462562e0488f3416616 (diff) | |
download | gentoo-78f09609f0f81fa0bb2e83cc0dba2346ada2d975.tar.gz gentoo-78f09609f0f81fa0bb2e83cc0dba2346ada2d975.tar.xz |
dev-libs/uchardet: avoid using EAPI-6-deprecated function in src_prepare
cmake_comment_add_subdirectory is EAPI-6-compatible,
while comment_add_subdirectory is not.
Currently both these functions do the same and
this is a ditto change, thus no revbump.
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/uchardet/uchardet-0.0.5-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-libs/uchardet/uchardet-0.0.5-r1.ebuild b/dev-libs/uchardet/uchardet-0.0.5-r1.ebuild index 0dd07643a82..29224ec280c 100644 --- a/dev-libs/uchardet/uchardet-0.0.5-r1.ebuild +++ b/dev-libs/uchardet/uchardet-0.0.5-r1.ebuild @@ -22,7 +22,7 @@ PATCHES=( ) src_prepare() { - use test || comment_add_subdirectory test + use test || cmake_comment_add_subdirectory test cmake-utils_src_prepare } |