varnishcache / libvmod-example

Starting point for vmod development for Varnish Cache
The Unlicense
13 stars 12 forks source link

Can't ./configure on arch #10

Closed gquintard closed 3 years ago

gquintard commented 3 years ago

./configure fails with:

./configure: line 13695: syntax error near unexpected token `newline'
./configure: line 13695: `    '''

full configure script here: https://filebin.varnish-software.com/guxugkpbnphk7ybw

Dockerfile reproducer:

FROM archlinux:latest

RUN pacman --noconfirm -Sy autoconf automake base-devel gcc git libtool make python python-docutils varnish && \
    git clone https://github.com/varnishcache/libvmod-example.git && \
    cd libvmod-example && \
    ./autogen.sh && \
    ./configure && \
    make && \
    make check