diff options
author | Patrick Lauer <patrick@gentoo.org> | 2021-02-09 15:24:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2021-02-09 15:24:52 +0000 |
commit | 7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60 (patch) | |
tree | b7b99b57c4e51d275920fc7c82684cf31cf4fbdb /dev-db/timescaledb | |
parent | x11-misc/py3status: drop useless ebuild (diff) | |
download | gentoo-7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60.tar.gz gentoo-7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60.tar.bz2 gentoo-7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60.zip |
dev-db/timescaledb: Fix syntax
Fixes #769749
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'dev-db/timescaledb')
-rw-r--r-- | dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild (renamed from dev-db/timescaledb/timescaledb-2.0.1.ebuild) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev-db/timescaledb/timescaledb-2.0.1.ebuild b/dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild index 26e21a09813f..9e97e6124c15 100644 --- a/dev-db/timescaledb/timescaledb-2.0.1.ebuild +++ b/dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild @@ -36,8 +36,10 @@ timescale_configure() { local CMAKE_USE_DIR=$BUILD_DIR local mycmakeargs=( "-DPG_CONFIG=/usr/bin/pg_config${MULTIBUILD_VARIANT}" "-DREGRESS_CHECKS=OFF" ) - # licensing is tied to features, this useflag disables the non-apache2 licensed bits" - use proprietary-extensions || mycmakeargs += "-DAPACHE_ONLY=ON" + # licensing is tied to features, this useflag disables the non-apache2 licensed bits + if ! use proprietary-extensions ; then + mycmakeargs+=("-DAPACHE_ONLY=ON") + fi cmake_src_configure } |