Skip to content

Commit

Permalink
added to the installations a way to disable lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-ang9 committed Nov 27, 2024
1 parent cd67883 commit 874e81a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/generate_manpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit 874e81a

Please sign in to comment.