Skip to content

Commit aa5bcf3

Browse files
committed
added to the installations a way to disable lua
1 parent 54baa2f commit aa5bcf3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/generate_manpage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: '3.10'
22+
python-version: '3.10' # Use Python 3.10
2323

2424
- name: Add Universe Repository
2525
run: |
@@ -37,10 +37,10 @@ jobs:
3737
wget http://ftp.rpm.org/releases/rpm-4.14.x/rpm-4.14.2.tar.bz2
3838
tar -xjf rpm-4.14.2.tar.bz2
3939
cd rpm-4.14.2
40-
export PKG_CONFIG_PATH=/opt/hostedtoolcache/Python/3.10.0/x64/lib/pkgconfig
41-
export PYTHON_CFLAGS="-I/opt/hostedtoolcache/Python/3.10.0/x64/include/python3.10"
42-
export PYTHON_LIBS="-L/opt/hostedtoolcache/Python/3.10.0/x64/lib -lpython3.10"
43-
./configure --disable-nls --enable-python
40+
export PKG_CONFIG_PATH=/opt/hostedtoolcache/Python/3.10.15/x64/lib/pkgconfig
41+
export PYTHON_CFLAGS="-I/opt/hostedtoolcache/Python/3.10.15/x64/include/python3.10"
42+
export PYTHON_LIBS="-L/opt/hostedtoolcache/Python/3.10.15/x64/lib -lpython3.10"
43+
./configure --disable-nls --enable-python --without-lua
4444
make
4545
sudo make install
4646
cd python

0 commit comments

Comments
 (0)