From abdb185a719ca995dadc3f1ff5556ea1af7ab53d Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 9 Dec 2020 09:28:23 +0100 Subject: [PATCH] GitHub CI: build PCP with -fPIC Currently needed for branch vr which builds UltraGrid as a library --- .github/scripts/install-common-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/install-common-deps.sh b/.github/scripts/install-common-deps.sh index fd4bc9c2a..0f878b3b5 100755 --- a/.github/scripts/install-common-deps.sh +++ b/.github/scripts/install-common-deps.sh @@ -15,7 +15,7 @@ install_pcp() { ( cd pcp ./autogen.sh || true # autogen exits with 1 - ./configure --disable-shared + CFLAGS=-fPIC ./configure --disable-shared make -j 5 ${SUDO}make install )