From 874e81ac904ab6317531aa3c2b2dd7616029889d Mon Sep 17 00:00:00 2001 From: Andrew Anglin Date: Wed, 27 Nov 2024 09:00:32 -0500 Subject: [PATCH] added to the installations a way to disable lua --- .github/workflows/generate_manpage.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/generate_manpage.yml b/.github/workflows/generate_manpage.yml index b547f693e2..bf0ba697d7 100644 --- a/.github/workflows/generate_manpage.yml +++ b/.github/workflows/generate_manpage.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.10' # Use Python 3.10 - name: Add Universe Repository run: | @@ -37,10 +37,10 @@ jobs: wget http://ftp.rpm.org/releases/rpm-4.14.x/rpm-4.14.2.tar.bz2 tar -xjf rpm-4.14.2.tar.bz2 cd rpm-4.14.2 - export PKG_CONFIG_PATH=/opt/hostedtoolcache/Python/3.10.0/x64/lib/pkgconfig - export PYTHON_CFLAGS="-I/opt/hostedtoolcache/Python/3.10.0/x64/include/python3.10" - export PYTHON_LIBS="-L/opt/hostedtoolcache/Python/3.10.0/x64/lib -lpython3.10" - ./configure --disable-nls --enable-python + export PKG_CONFIG_PATH=/opt/hostedtoolcache/Python/3.10.15/x64/lib/pkgconfig + export PYTHON_CFLAGS="-I/opt/hostedtoolcache/Python/3.10.15/x64/include/python3.10" + export PYTHON_LIBS="-L/opt/hostedtoolcache/Python/3.10.15/x64/lib -lpython3.10" + ./configure --disable-nls --enable-python --without-lua make sudo make install cd python