[Pkg-openssl-changes] r782 - openssl/branches/jessie_stable/debian

Sebastian Andrzej Siewior bigeasy at moszumanska.debian.org
Tue May 3 19:51:01 UTC 2016


Author: bigeasy
Date: 2016-05-03 19:51:01 +0000 (Tue, 03 May 2016)
New Revision: 782

Modified:
   openssl/branches/jessie_stable/debian/rules
Log:
debian: remove touch hack + a extend clean rule

- the touch hack for idea + md2 header can be avoided by `make depend`
  as we have it in trunk

- the `find -type l` rule in clean which I spotted in trunk helps
  creating the source package.



Modified: openssl/branches/jessie_stable/debian/rules
===================================================================
--- openssl/branches/jessie_stable/debian/rules	2016-05-03 19:15:50 UTC (rev 781)
+++ openssl/branches/jessie_stable/debian/rules	2016-05-03 19:51:01 UTC (rev 782)
@@ -47,12 +47,10 @@
 build-indep: build-stamp
 build-stamp:
 	dh_testdir
-	mkdir -p include/openssl/
-	touch include/openssl/idea.h
-	touch include/openssl/mdc2.h
 #	perl util/ssldir.pl /usr/lib/ssl
 #	chmod +x debian/libtool
 	./Configure no-shared $(CONFARGS) debian-$(DEB_HOST_ARCH)
+	make depend
 	make -f Makefile all
 	$(MAKE_TEST)
 	mv libcrypto.a libcrypto.static
@@ -103,6 +101,7 @@
 	rm -f test/asn1test test/wp_test test/srptest test/jpaketest
 	rm -f certs/demo/*.0
 	rm -rf crypto/aes/aes-armv4.S crypto/bn/armv4-gf2m.S crypto/modes/ghash-armv4.S crypto/sha/*.S
+	find . -type l -exec rm '{}' \;
 	dh_clean
 
 install: build




More information about the Pkg-openssl-changes mailing list