Merge lp:~mzanetti/unity8/patched-control into lp:unity8

Proposed by Michael Zanetti
Status: Merged
Approved by: Michał Sawicz
Approved revision: 1547
Merged at revision: 1550
Proposed branch: lp:~mzanetti/unity8/patched-control
Merge into: lp:unity8
Diff against target: 15 lines (+4/-1)
1 file modified
build.sh (+4/-1)
To merge this branch: bzr merge lp:~mzanetti/unity8/patched-control
Reviewer Review Type Date Requested Status
Michał Sawicz Approve
PS Jenkins bot (community) continuous-integration Needs Fixing
Review via email: mp+246105@code.launchpad.net

Commit message

patch debian/control file before using it to make it work with mk-build-deps

Description of the change

 * Are there any related MPs required for this MP to build/function as expected? Please list.

no

 * Did you perform an exploratory manual test run of your code change and any related functionality?

yes

 * Did you make sure that your branch does not contain spurious tags?

yes

 * If you changed the packaging (debian), did you subscribe the ubuntu-unity team to this MP?

n/a

 * If you changed the UI, has there been a design review?

n/a

To post a comment you must log in.
Revision history for this message
Michał Sawicz (saviq) :
review: Needs Fixing
lp:~mzanetti/unity8/patched-control updated
1546. By Michael Zanetti

change it a bit

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Michał Sawicz (saviq) :
review: Needs Fixing
lp:~mzanetti/unity8/patched-control updated
1547. By Michael Zanetti

check on the control file, not the .deb package

Revision history for this message
Michał Sawicz (saviq) wrote :

 * Did you perform an exploratory manual test run of the code change and any related functionality?
Y
 * Did CI run pass? If not, please explain why.
Unrelated fail :/
 * Did you make sure that the branch does not contain spurious tags?
Y

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'build.sh'
2--- build.sh 2014-11-14 17:47:00 +0000
3+++ build.sh 2015-01-12 15:50:34 +0000
4@@ -61,7 +61,10 @@
5 }
6
7 mk_build_deps() {
8- [ ! -f unity8-build-deps*deb -o $CODE_DIR/debian/control -nt unity8-build-deps*deb ] && mk-build-deps --install --root-cmd sudo $CODE_DIR/debian/control
9+ if [ ! -f control -o $CODE_DIR/debian/control -nt control ]; then
10+ sed 's/\:native//g' $CODE_DIR/debian/control > control
11+ mk-build-deps --install --root-cmd sudo control
12+ fi
13 }
14
15 if [ -f "/usr/bin/ccache" ] ; then

Subscribers

People subscribed via source and target branches