From f9f9c71f77efcdafc087305d0685df6c741f3335 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 13 Oct 2016 22:10:51 -0400 Subject: [PATCH] Fedora, for some stupid reason, does not include /usr/local/ into its default search paths --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ecba9af1b..aee38416c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,9 @@ RUN dnf -y update && \ bison \ texinfo +ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig +ENV LD_LIBRARY_PATH /usr/local/lib + # Build & Install libxil COPY thirdparty/libxil /tmp/libxil RUN mkdir -p /tmp/libxil/build && cd /tmp/libxil/build && cmake .. && make install