From 9decaf3a7a618bbc930d7054b0ec2e9f772a0f6e Mon Sep 17 00:00:00 2001 From: Chris Kuehl Date: Thu, 3 Sep 2015 17:54:56 -0700 Subject: [PATCH] Add libpcre3 to fix itest Otherwise grep -P doesn't work --- Dockerfile | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c33d70..27b120b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:jessie MAINTAINER Chris Kuehl RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ apt-get install -y --no-install-recommends \ - build-essential devscripts equivs procps psmisc && \ + build-essential devscripts equivs procps psmisc libpcre3 && \ apt-get clean WORKDIR /mnt diff --git a/Makefile b/Makefile index 6c48ff3..245bcb1 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CFLAGS=-std=gnu99 -static -Wall -Werror DOCKER_RUN_TEST := docker run -v $(PWD):/mnt:ro DOCKER_DEB_TEST := sh -euxc ' \ apt-get update \ - && apt-get install -y --no-install-recommends procps psmisc \ + && apt-get install -y --no-install-recommends procps psmisc libpcre3 \ && (which timeout || apt-get install -y --no-install-recommends timeout) \ && dpkg -i /mnt/dist/*.deb \ && cd /mnt \ @@ -11,7 +11,7 @@ DOCKER_DEB_TEST := sh -euxc ' \ ' DOCKER_PYTHON_TEST := sh -uexc ' \ apt-get update \ - && apt-get install -y --no-install-recommends python-pip build-essential procps psmisc \ + && apt-get install -y --no-install-recommends python-pip build-essential procps psmisc libpcre3 \ && (which timeout || apt-get install -y --no-install-recommends timeout) \ && tmp=$$(mktemp -d) \ && cp -r /mnt/* "$$tmp" \