diff options
author | Sam James <sam@gentoo.org> | 2023-08-21 19:55:23 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-08-21 20:22:33 +0100 |
commit | 5a172fc01ffb274c9433090211c146d929c07d45 (patch) | |
tree | 2abcffc34b7af7c097885f22641f79b3342c3be1 /net-misc/mosh | |
parent | licenses: Update unicode (diff) | |
download | gentoo-5a172fc01ffb274c9433090211c146d929c07d45.tar.gz gentoo-5a172fc01ffb274c9433090211c146d929c07d45.tar.bz2 gentoo-5a172fc01ffb274c9433090211c146d929c07d45.zip |
net-misc/mosh: use cxxflags instead
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/mosh')
-rw-r--r-- | net-misc/mosh/mosh-1.3.2-r3.ebuild | 2 | ||||
-rw-r--r-- | net-misc/mosh/mosh-1.4.0.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-misc/mosh/mosh-1.3.2-r3.ebuild b/net-misc/mosh/mosh-1.3.2-r3.ebuild index 3e73eb1a4743..3cda6f2836f5 100644 --- a/net-misc/mosh/mosh-1.3.2-r3.ebuild +++ b/net-misc/mosh/mosh-1.3.2-r3.ebuild @@ -50,7 +50,7 @@ src_prepare() { src_configure() { # protobuf needs >=c++14 - append-flags -std=gnu++14 + append-cxxflags -std=gnu++14 econf \ --disable-completion \ diff --git a/net-misc/mosh/mosh-1.4.0.ebuild b/net-misc/mosh/mosh-1.4.0.ebuild index 0508d2dd4db1..123086e09347 100644 --- a/net-misc/mosh/mosh-1.4.0.ebuild +++ b/net-misc/mosh/mosh-1.4.0.ebuild @@ -58,7 +58,7 @@ src_configure() { MAKEOPTS+=" V=1" # protobuf needs >=c++14 - append-flags -std=gnu++14 + append-cxxflags -std=gnu++14 local myeconfargs=( # We install it ourselves in src_install |