From e8a14a340648d415d4e93e2a6c0b8f69b982a12e Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Tue, 10 Apr 2018 12:01:37 -0400 Subject: [PATCH] [jenkins] Remove unnecessary CPP2RST_INCLUDE flags Fixed by cpp2py build in triqs efd7b0f7d855a0b5ae260d0fd7a6031cec068072 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87991393..560ce4ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,6 @@ WORKDIR $BUILD/$APPNAME RUN chown build . USER build ARG BUILD_DOC=0 -RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${BUILD_DOC} -DCPP2RST_INCLUDE_COMMAND=--includes=/usr/lib/llvm-5.0/include/c++/v1 && make -j2 && make test +RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Documentation=${BUILD_DOC} && make -j2 && make test USER root RUN make install