mirror of https://github.com/tp4a/teleport
fix build script when libssh downgrade to 0.8.9
parent
9fa10ea7de
commit
b051316715
|
@ -510,7 +510,7 @@ class BuilderLinux(BuilderBase):
|
||||||
os.system('unzip "{}/{}" -d "{}"'.format(PATH_DOWNLOAD, file_name, self.PATH_TMP))
|
os.system('unzip "{}/{}" -d "{}"'.format(PATH_DOWNLOAD, file_name, self.PATH_TMP))
|
||||||
|
|
||||||
cc.n('build libssh...', end='')
|
cc.n('build libssh...', end='')
|
||||||
out_file = os.path.join(self.PATH_RELEASE, 'lib64', 'libssh.a')
|
out_file = os.path.join(self.PATH_RELEASE, 'lib', 'libssh.a')
|
||||||
if os.path.exists(out_file):
|
if os.path.exists(out_file):
|
||||||
cc.w('already exists, skip.')
|
cc.w('already exists, skip.')
|
||||||
return
|
return
|
||||||
|
@ -535,7 +535,7 @@ class BuilderLinux(BuilderBase):
|
||||||
' -DWITH_GSSAPI=OFF' \
|
' -DWITH_GSSAPI=OFF' \
|
||||||
' -DWITH_ZLIB=ON' \
|
' -DWITH_ZLIB=ON' \
|
||||||
' -DWITH_PCAP=OFF' \
|
' -DWITH_PCAP=OFF' \
|
||||||
' -DBUILD_SHARED_LIBS=OFF' \
|
' -DWITH_STATIC_LIB=ON' \
|
||||||
' -DUNIT_TESTING=OFF' \
|
' -DUNIT_TESTING=OFF' \
|
||||||
' -DWITH_EXAMPLES=OFF' \
|
' -DWITH_EXAMPLES=OFF' \
|
||||||
' -DWITH_BENCHMARKS=OFF' \
|
' -DWITH_BENCHMARKS=OFF' \
|
||||||
|
@ -543,6 +543,7 @@ class BuilderLinux(BuilderBase):
|
||||||
''.format(path_release=self.PATH_RELEASE)
|
''.format(path_release=self.PATH_RELEASE)
|
||||||
|
|
||||||
# ' -DWITH_STATIC_LIB=ON'
|
# ' -DWITH_STATIC_LIB=ON'
|
||||||
|
# ' -DBUILD_SHARED_LIBS=OFF'
|
||||||
|
|
||||||
|
|
||||||
old_p = os.getcwd()
|
old_p = os.getcwd()
|
||||||
|
|
Loading…
Reference in New Issue