testing: Remove obsolete openssl-fips recipe

This was only required when we initially started and OpenSSL was built
from sources, which was changed with b97dd59ba8 ("install FIPS-aware
OpenSSL Debian packages").
This commit is contained in:
Tobias Brunner 2016-06-29 14:39:06 +02:00
parent 7b879874d7
commit 5e5dee36b6
1 changed files with 0 additions and 23 deletions

View File

@ -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