Merge lp:~mhr3/frame/fix-autogen into lp:frame

Proposed by Michal Hruby
Status: Merged
Merged at revision: 89
Proposed branch: lp:~mhr3/frame/fix-autogen
Merge into: lp:frame
Diff against target: 11 lines (+2/-1)
1 file modified
autogen.sh (+2/-1)
To merge this branch: bzr merge lp:~mhr3/frame/fix-autogen
Reviewer Review Type Date Requested Status
Chase Douglas (community) Approve
Review via email: mp+118327@code.launchpad.net

Commit message

Invoke configure as last step of autogen

Description of the change

Invoke configure in autogen, this fixes build when using jhbuild.

To post a comment you must log in.
Revision history for this message
Chase Douglas (chasedouglas) wrote :

Looks good to me.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'autogen.sh'
2--- autogen.sh 2012-03-27 20:38:23 +0000
3+++ autogen.sh 2012-08-06 10:21:02 +0000
4@@ -6,6 +6,7 @@
5 ORIGDIR=`pwd`
6 cd $srcdir
7
8-autoreconf --force --install $@ || exit 1
9+autoreconf --force --install || exit 1
10 cd $ORIGDIR || exit $?
11+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
12

Subscribers

People subscribed via source and target branches