Merge pull request #284 from kiwix/add_missing_import_i586

Add missing import of pj in i586 platform
This commit is contained in:
Matthieu Gautier 2019-01-11 13:44:05 +01:00 committed by GitHub
commit 12614facce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ REM ========================================================
REM Install kiwix-lib
git clone https://github.com/kiwix/kiwix-lib.git || exit /b 1
cd kiwix-lib
set CPPFLAGS="-I%EXTRA_DIR%/include"
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
cd build
ninja || exit /b 1

View File

@ -1,7 +1,7 @@
import os
from .base import PlatformInfo
from kiwixbuild.utils import which
from kiwixbuild.utils import which, pj
class I586PlatformInfo(PlatformInfo):