This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository jarjar.
commit cc6854372eb9f47cffc3a8aa6fe48d58de6c5bca Author: Emmanuel Bourg <[email protected]> Date: Fri Sep 8 13:49:28 2017 +0200 Create the required lib directory before building --- debian/changelog | 1 + debian/rules | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2238887..f5ffaac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,7 @@ jarjar (1.4+svn142-7) UNRELEASED; urgency=medium * Move package maintenance to git. [ Emmanuel Bourg ] + * Create the required lib directory before building * Standards-Version updated to 4.1.0 -- Miguel Landaeta <[email protected]> Mon, 07 Aug 2017 12:30:26 +0100 diff --git a/debian/rules b/debian/rules index 7aa3111..5e12ab9 100755 --- a/debian/rules +++ b/debian/rules @@ -8,6 +8,10 @@ ASM_VERSION := $(shell dpkg-query -f '$${source:Version}' --show libasm-java) %: dh $@ --with maven-repo-helper +override_dh_auto_build: + mkdir -p lib + dh_auto_build + override_dh_gencontrol: dh_gencontrol -- -Vasm:Version=${ASM_VERSION} -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jarjar.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

