Merge pull request #284 from kiwix/add_missing_import_i586
Add missing import of pj in i586 platform
This commit is contained in:
commit
12614facce
|
@ -2,6 +2,7 @@ REM ========================================================
|
||||||
REM Install kiwix-lib
|
REM Install kiwix-lib
|
||||||
git clone https://github.com/kiwix/kiwix-lib.git || exit /b 1
|
git clone https://github.com/kiwix/kiwix-lib.git || exit /b 1
|
||||||
cd kiwix-lib
|
cd kiwix-lib
|
||||||
|
set CPPFLAGS="-I%EXTRA_DIR%/include"
|
||||||
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
|
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
|
||||||
cd build
|
cd build
|
||||||
ninja || exit /b 1
|
ninja || exit /b 1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from .base import PlatformInfo
|
from .base import PlatformInfo
|
||||||
from kiwixbuild.utils import which
|
from kiwixbuild.utils import which, pj
|
||||||
|
|
||||||
|
|
||||||
class I586PlatformInfo(PlatformInfo):
|
class I586PlatformInfo(PlatformInfo):
|
||||||
|
|
Loading…
Reference in New Issue