mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
[build] fix some typos
This commit is contained in:
parent
1cc35fd6be
commit
a403788d90
2
.github/actions/muslbuilder/Dockerfile
vendored
2
.github/actions/muslbuilder/Dockerfile
vendored
@ -117,7 +117,7 @@ RUN cd /extract/pcre2-* && \
|
||||
&& \
|
||||
make && make install
|
||||
|
||||
RUN cd /extract/zlib-1.2.12 && ./configure --prefix=/fake.root && make && make install
|
||||
RUN cd /extract/zlib-* && ./configure --prefix=/fake.root && make && make install
|
||||
|
||||
RUN cd /extract/libssh2-* && \
|
||||
./configure --prefix=/fake.root \
|
||||
|
14
.github/actions/muslbuilder/entrypoint.sh
vendored
14
.github/actions/muslbuilder/entrypoint.sh
vendored
@ -3,6 +3,16 @@
|
||||
set -Eeuxo pipefail
|
||||
|
||||
cd $GITHUB_WORKSPACE
|
||||
./autogen.sh
|
||||
./configure
|
||||
mkdir lbuild
|
||||
cd lbuild
|
||||
../autogen.sh
|
||||
../configure \
|
||||
--with-libarchive=/fake.root \
|
||||
CFLAGS='-static -g1 -gz=zlib -no-pie -O2' \
|
||||
CXXFLAGS='-static -g1 -gz=zlib -U__unused -no-pie -O2' \
|
||||
LDFLAGS="-L/fake.root/lib" \
|
||||
CPPFLAGS="-I/fake.root/include" \
|
||||
LIBS="-L/fake.root/lib -lexecinfo -lssh2 -llzma -lssl -lcrypto -lz" \
|
||||
--enable-static \
|
||||
PATH="/fake.root/bin:${PATH}"
|
||||
make -j4
|
||||
|
Loading…
Reference in New Issue
Block a user