diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-15 07:11:43 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-15 07:11:43 +0700 |
commit | f40275528f93eb4087265d77ed681f74182df22f (patch) | |
tree | efcce9ce90cfad02e145583141fe19fc08e7c07f /system | |
parent | b688ef5a1299fcbc17a2af3ebd25e6764164e331 (diff) |
system/postgresql: Switch to python3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/postgresql/postgresql.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/postgresql/postgresql.SlackBuild b/system/postgresql/postgresql.SlackBuild index 40bdcfb6b8b4..a916f694c6e7 100644 --- a/system/postgresql/postgresql.SlackBuild +++ b/system/postgresql/postgresql.SlackBuild @@ -31,7 +31,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=postgresql VERSION=${VERSION:-14.7} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -107,6 +107,7 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ +PYTHON="/usr/bin/python3" \ ./configure \ --prefix=/usr/lib${LIBDIRSUFFIX}/$PRGNAM/$PG_VERSION \ --sysconfdir=/etc/$PRGNAM/$PG_VERSION \ |