From 5e5dee36b60d552320f7d1bd8f5ca9845f74897d Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 29 Jun 2016 14:39:06 +0200 Subject: [PATCH] testing: Remove obsolete openssl-fips recipe This was only required when we initially started and OpenSSL was built from sources, which was changed with b97dd59ba841 ("install FIPS-aware OpenSSL Debian packages"). --- testing/scripts/recipes/011_openssl-fips.mk | 23 --------------------- 1 file changed, 23 deletions(-) delete mode 100644 testing/scripts/recipes/011_openssl-fips.mk diff --git a/testing/scripts/recipes/011_openssl-fips.mk b/testing/scripts/recipes/011_openssl-fips.mk deleted file mode 100644 index 5d28b181e..000000000 --- a/testing/scripts/recipes/011_openssl-fips.mk +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/make - -PV = 2.0.3 -PKG = openssl-fips-$(PV) -TAR = $(PKG).tar.gz -SRC = http://www.openssl.org/source/$(TAR) - -all: install - -$(TAR): - wget $(SRC) - -$(PKG): $(TAR) - tar xfz $(TAR) - -configure: $(PKG) - cd $(PKG) && ./config - -build: configure - cd $(PKG) && make - -install: build - cd $(PKG) && make install