diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-04-28 02:14:52 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-04-28 02:15:09 +0200 |
commit | 154f5f968ba31121c46fcfe9cf9638ca0e4b3e08 (patch) | |
tree | b9b5b3c2c6855c26383b8df42ec433b82f2faeff /sys-process/incron | |
parent | media-libs/lib3mf: Keyword 2.1.1-r1 arm64, #785880 (diff) | |
download | gentoo-154f5f968ba31121c46fcfe9cf9638ca0e4b3e08.tar.gz gentoo-154f5f968ba31121c46fcfe9cf9638ca0e4b3e08.tar.bz2 gentoo-154f5f968ba31121c46fcfe9cf9638ca0e4b3e08.zip |
sys-process/incron: force C++14
Closes: https://bugs.gentoo.org/786189
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'sys-process/incron')
-rw-r--r-- | sys-process/incron/incron-0.5.12_p20191114-r1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-process/incron/incron-0.5.12_p20191114-r1.ebuild b/sys-process/incron/incron-0.5.12_p20191114-r1.ebuild index 7e7ab9ba0fb1..e79ad35d10da 100644 --- a/sys-process/incron/incron-0.5.12_p20191114-r1.ebuild +++ b/sys-process/incron/incron-0.5.12_p20191114-r1.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit linux-info systemd toolchain-funcs +inherit flag-o-matic linux-info systemd toolchain-funcs COMMIT="1eedfbc9b318372efd119fd17f4abdbde561a53d" S="${WORKDIR}/${PN}-${COMMIT}" @@ -39,6 +39,9 @@ src_prepare() { } src_compile() { + # code is not C++17 ready + append-cxxflags -std=c++14 + emake CXX=$(tc-getCXX) } |