diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-05-09 12:51:15 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-05-09 12:51:40 +0200 |
commit | 3a2b7823d754b84a1d8df46077b6ecd503a467ac (patch) | |
tree | 86e8c1cab73c2aa66dad48ca485fdf12818524de /app-containers/conmon | |
parent | app-containers/conmon: add 2.1.11 (diff) | |
download | gentoo-3a2b7823d754b84a1d8df46077b6ecd503a467ac.tar.gz gentoo-3a2b7823d754b84a1d8df46077b6ecd503a467ac.tar.bz2 gentoo-3a2b7823d754b84a1d8df46077b6ecd503a467ac.zip |
app-containers/conmon: use bash redirect instead of tee to write VERSION
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-containers/conmon')
-rw-r--r-- | app-containers/conmon/conmon-2.1.11.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-containers/conmon/conmon-2.1.11.ebuild b/app-containers/conmon/conmon-2.1.11.ebuild index e135e5acc8fe..2818e91ebc37 100644 --- a/app-containers/conmon/conmon-2.1.11.ebuild +++ b/app-containers/conmon/conmon-2.1.11.ebuild @@ -28,8 +28,8 @@ DEPEND="${RDEPEND}" BDEPEND="dev-go/go-md2man" src_prepare() { - # PR 505 https://github.com/containers/conmon/pull/505 - echo "${PV}" | tee VERSION || die + # https://github.com/containers/conmon/pull/505 + echo "${PV}" > VERSION || die default sed -i -e "s|shell.*--exists libsystemd.* && echo \"0\"|shell echo $(usex systemd 0 1)|g;" Makefile || die |