From d5376afd445edb5582389b4ba88018690250b7b9 Mon Sep 17 00:00:00 2001 From: Ronan Dunklau Date: Wed, 6 Nov 2024 16:47:55 +0100 Subject: [PATCH] Fix requires The postgresl control file parser do not add up multiple occurences of the same keyword. In practice it's not a big deal as plpgsql is installed by default. --- sql/common/pgrouting.control | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sql/common/pgrouting.control b/sql/common/pgrouting.control index 5b6ddcf1dfd..7461bdd0828 100644 --- a/sql/common/pgrouting.control +++ b/sql/common/pgrouting.control @@ -3,5 +3,4 @@ comment = 'pgRouting Extension' default_version = '${PROJECT_VERSION}' module_pathname = '${PROJECT_MODULE_PATHNAME}' relocatable = true -requires = 'plpgsql' -requires = 'postgis' +requires = 'plpgsql,postgis'