aboutsummaryrefslogtreecommitdiffstats
path: root/testing/scripts
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2016-06-29 14:39:06 +0200
committerTobias Brunner <tobias@strongswan.org>2016-07-04 12:18:51 +0200
commit5e5dee36b60d552320f7d1bd8f5ca9845f74897d (patch)
treec0dd6dc2f277d677d366a119b18b46f1678d2ca9 /testing/scripts
parent7b879874d7b79320c582fcdcb69a5f4212776e49 (diff)
downloadstrongswan-5e5dee36b60d552320f7d1bd8f5ca9845f74897d.tar.bz2
strongswan-5e5dee36b60d552320f7d1bd8f5ca9845f74897d.tar.xz
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").
Diffstat (limited to 'testing/scripts')
-rw-r--r--testing/scripts/recipes/011_openssl-fips.mk23
1 files changed, 0 insertions, 23 deletions
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