From 89a2e427f3885c1c93ef94024e713157905519e1 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Tue, 28 Feb 2023 17:58:38 +0530 Subject: [PATCH] Added libpq5 and libpq5-dev to the Redhat build script. --- pkg/redhat/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/redhat/build.sh b/pkg/redhat/build.sh index ce6cbaa29..c845740bc 100755 --- a/pkg/redhat/build.sh +++ b/pkg/redhat/build.sh @@ -230,7 +230,7 @@ if [ "${OS_VERSION}" == 7 ]; then fi # Get the libpq we need -yumdownloader -y --downloadonly --destdir="${DISTROOT}" postgresql$(ls -d /usr/pgsql-1* | sort -r | head -1 | awk -F '-' '{ print $2 }')-libs +yumdownloader -y --downloadonly --destdir="${DISTROOT}" libpq5 libpq5-devel postgresql$(ls -d /usr/pgsql-1* | sort -r | head -1 | awk -F '-' '{ print $2 }')-libs # # Get the results!