Skip to content
Snippets Groups Projects
Commit b015577a authored by Dilawar Singh's avatar Dilawar Singh
Browse files

If python-sys failed to provide platform and arch, use default.

parent 968c1e95
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,9 @@ execute_process(
OUTPUT_VARIABLE PY_PLATFORM_ARCH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if( NOT PY_PLATFORM_ARCH )
set(PY_PLATFORM_ARCH "linux-x86_64" )
endif( )
message(STATUS "Building bdist for arch - ${PY_PLATFORM_ARCH}")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment