]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
ci(binary): less verbose libpq build 986/head
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 10 Jan 2025 12:07:23 +0000 (13:07 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 14 Jan 2025 18:23:23 +0000 (19:23 +0100)
tools/build/build_libpq.sh

index c3711210b1523c2bdcf3fe8b9fa97fda43571d90..bb65030660ea09619f49fc037597230574299e82 100755 (executable)
@@ -112,8 +112,8 @@ if [ "$ID" == "centos" ] || [ "$ID" == "macos" ]; then
             ./configure "darwin64-$MACOSX_ARCHITECTURE-cc" $options
         fi
 
-        make depend
-        make
+        make -s depend
+        make -s
     else
         pushd "${openssl_dir}"
     fi
@@ -136,7 +136,7 @@ if [ "$ID" == "macos" ]; then
 
         pushd "${krb5_dir}"
         ./configure "${make_configure_standard_flags[@]}"
-        make
+        make -s
     else
         pushd "${krb5_dir}"
     fi
@@ -165,7 +165,7 @@ if [ "$ID" == "centos" ] || [ "$ID" == "macos" ]; then
 
         autoreconf -i
         ./configure "${make_configure_standard_flags[@]}" --disable-macos-framework
-        make
+        make -s
     else
         pushd "${sasl_dir}"
     fi
@@ -195,10 +195,10 @@ if [ "$ID" == "centos" ] || [ "$ID" == "macos" ]; then
 
         ./configure "${make_configure_standard_flags[@]}" --enable-backends=no --enable-null
 
-        make depend
-        make -C libraries/liblutil/
-        make -C libraries/liblber/
-        make -C libraries/libldap/
+        make -s depend
+        make -s -C libraries/liblutil/
+        make -s -C libraries/liblber/
+        make -s -C libraries/libldap/
     else
         pushd "${ldap_dir}"
     fi
@@ -237,9 +237,9 @@ if [ ! -d "${postgres_dir}" ]; then
     ./configure "${make_configure_standard_flags[@]}" --sysconfdir=/etc/postgresql-common \
         --with-gssapi --with-openssl --with-pam --with-ldap \
         --without-readline --without-icu
-    make -C src/interfaces/libpq
-    make -C src/bin/pg_config
-    make -C src/include
+    make -s -C src/interfaces/libpq
+    make -s -C src/bin/pg_config
+    make -s -C src/include
 else
     pushd "${postgres_dir}"
 fi