Merge lp:~ebourg/openjdk/openjdk8-noverbose into lp:~openjdk/openjdk/openjdk8

Proposed by Emmanuel Bourg
Status: Needs review
Proposed branch: lp:~ebourg/openjdk/openjdk8-noverbose
Merge into: lp:~openjdk/openjdk/openjdk8
Diff against target: 25 lines (+4/-1)
2 files modified
debian/README.source (+1/-0)
debian/rules (+3/-1)
To merge this branch: bzr merge lp:~ebourg/openjdk/openjdk8-noverbose
Reviewer Review Type Date Requested Status
Matthias Klose Pending
Review via email: mp+228100@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

621. By Emmanuel Bourg

Added a noverbose option to DEB_BUILD_OPTIONS to disable the verbose build

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/README.source'
2--- debian/README.source 2014-06-30 15:53:54 +0000
3+++ debian/README.source 2014-07-24 12:32:22 +0000
4@@ -61,6 +61,7 @@
5 disable Javadoc generation.
6 * nostrip: debugging symbols should not be stripped from the
7 binary during installation
8+ * noverbose: disable the verbose build options
9 * parallel=X: package should be built using up to X parallel processes
10 * nobootstrap: don't use gcj to bootstrap OpenJDK but use existing OpenJDK
11 installed on current machine.
12
13=== modified file 'debian/rules'
14--- debian/rules 2014-07-17 10:56:17 +0000
15+++ debian/rules 2014-07-24 12:32:22 +0000
16@@ -508,7 +508,9 @@
17 endif
18 endif
19
20-EXTRA_BUILD_ENV += MAKE_VERBOSE=y QUIETLY= LOG=debug
21+ifeq (,$(filter $(DEB_BUILD_OPTIONS), noverbose))
22+ EXTRA_BUILD_ENV += MAKE_VERBOSE=y QUIETLY= LOG=debug
23+endif
24
25 EXTRA_BUILD_ENV += LIBFFI_LIBS=-lffi_pic
26

Subscribers

People subscribed via source and target branches