Skip to content

Commit fc5ff25

Browse files
committed
CI PCP: simplified
- '|| true' no longer needded - CFLAGS also doesn't seem to be required - remove --disable-shared - when possible, linkling dynamic library may be rather preferred than the contrary
1 parent 17eb5a0 commit fc5ff25

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/scripts/install-common-deps.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,8 @@ install_pcp() {
126126
sed 's/AC_PREREQ(.*)/AC_PREREQ(\[2.69\])/' configure.ac \
127127
> configure.ac.fixed
128128
mv configure.ac.fixed configure.ac
129-
130-
./autogen.sh || true # autogen exits with 1
131-
CFLAGS=-fPIC ./configure --disable-shared
129+
./autogen.sh
130+
./configure
132131
make -j "$(nproc)"
133132
sudo make install
134133
)

0 commit comments

Comments
 (0)