Skip to content

Commit

Permalink
dev-db/timescaledb: Fix syntax
Browse files Browse the repository at this point in the history
Fixes #769749

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Patrick Lauer <[email protected]>
  • Loading branch information
patricklauer committed Feb 9, 2021
1 parent 8cfda63 commit 7a2cdbb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 7a2cdbb

Please sign in to comment.