Skip to content

Commit

Permalink
ARROW-8071: [GLib] Fix build error with configure
Browse files Browse the repository at this point in the history
This is introduced by #6105.

Closes #6575 from kou/glib-fix-build-error-with-configure

Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
kou committed Mar 11, 2020
1 parent 97f7eea commit 08f8bff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion c_glib/arrow-glib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ libarrow_glib_la_cpp_headers += \

libarrow_glib_la_cpp_headers += \
file-system.hpp \
local-system.hpp
local-file-system.hpp

if HAVE_ARROW_ORC
libarrow_glib_la_cpp_headers += \
Expand Down
7 changes: 5 additions & 2 deletions ci/docker/ubuntu-16.04-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -y -q && \
apt-get install -y -q --no-install-recommends wget software-properties-common && \
apt-get install -y -q --no-install-recommends \
apt-transport-https \
software-properties-common \
wget && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
apt-add-repository -y "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main" && \
apt-add-repository -y "deb https://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main" && \
apt-get update -y -q && \
apt-get install -y -q --no-install-recommends \
autoconf \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ RUN \
quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
apt-transport-https \
gnupg \
wget && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main" > \
echo "deb https://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main" > \
/etc/apt/sources.list.d/llvm.list && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
Expand Down

0 comments on commit 08f8bff

Please sign in to comment.