You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that line 71, from tests/test_in_out_buf.cpp, should be
execlp(program,program,"-f",(char *)NULL);
But commenting it out allows all tests to run and pass, so it may not get used.
I'm building with docker from the current repo, I can replicate the error in isolation by creating an empty directory with just the (following) Dockerfile and from that directory running
docker build --tag fastx:edge .
This builds against the latest commit at the time of this issue, but uses its name so it should always be valid.
Dockerfile
FROM alpine:3.7
ARG LIBGTEXTUTILS_COMMIT=510270ecf2e342a81d5dffbf38505bfe18d23dca
RUN apk --no-cache add \
autoconf \
automake \
bash \
build-base \
ca-certificates \
curl \
git \
libtool \
make
RUN set -o pipefail \
&& mkdir -p /tmp/build \
&& cd /tmp/build \
&& git clone https://github.com/agordon/libgtextutils.git \
&& cd libgtextutils \
&& git fsck \
&& git checkout $LIBGTEXTUTILS_COMMIT \
&& autoreconf -if \
&& aclocal \
&& autoconf \
&& automake \
&& ./configure \
&& make \
&& make check
The text was updated successfully, but these errors were encountered:
I'm getting the following error from
make check
.I believe that line 71, from tests/test_in_out_buf.cpp, should be
But commenting it out allows all tests to run and pass, so it may not get used.
I'm building with docker from the current repo, I can replicate the error in isolation by creating an empty directory with just the (following) Dockerfile and from that directory running
This builds against the latest commit at the time of this issue, but uses its name so it should always be valid.
Dockerfile
The text was updated successfully, but these errors were encountered: