From: Emmanuel Bourg Date: Mon, 30 Nov 2015 13:22:35 +0000 (+0100) Subject: Disabled dh_strip_nondeterminism to speed up the build X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Fjava-package.git;a=commitdiff_plain;h=bdc0b6eb75d6c746f6754d762a4a3a6a27125324 Disabled dh_strip_nondeterminism to speed up the build --- diff --git a/debian/changelog b/debian/changelog index 7d4a4e6..1fd0d55 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ java-package (0.60) UNRELEASED; urgency=medium (Closes: #753071) * Changed the architecture of the documentation packages from any to all. * Changed the section of the documentation packages to non-free/doc + * Disabled dh_strip_nondeterminism when generating the Java packages + to speed up the build [ tony mancill ] * Update the package long description. diff --git a/lib/javase.sh b/lib/javase.sh index a0e27e4..7c32899 100644 --- a/lib/javase.sh +++ b/lib/javase.sh @@ -78,6 +78,9 @@ override_dh_compress: override_dh_shlibdeps: dh_shlibdeps --exclude=fxavcodecplugin --exclude=avplugin -l\$(shell find $j2se_name -type f -name '*.so*' -printf '${jvm_base##/}/%h\n' | sort -u | tr '\n' ':' | sed 's/:\$\$//') + +override_dh_strip_nondeterminism: + # Disable dh_strip_nondeterminism to speed up the build EOF } @@ -88,6 +91,8 @@ j2se_doc_rules() { %: dh \$@ +override_dh_strip_nondeterminism: + # Disable dh_strip_nondeterminism to speed up the build EOF }