Merge lp:~berolinux/linaro-android-build-tools/fix-toolchain-version-dump into lp:linaro-android-build-tools

Proposed by Bernhard Rosenkraenzer
Status: Merged
Approved by: Paul Sokolovsky
Approved revision: 359
Merged at revision: 359
Proposed branch: lp:~berolinux/linaro-android-build-tools/fix-toolchain-version-dump
Merge into: lp:linaro-android-build-tools
Diff against target: 13 lines (+4/-2)
1 file modified
build-scripts/build-android-toolchain-linaro (+4/-2)
To merge this branch: bzr merge lp:~berolinux/linaro-android-build-tools/fix-toolchain-version-dump
Reviewer Review Type Date Requested Status
Paul Sokolovsky Pending
Review via email: mp+81334@code.launchpad.net

Description of the change

Fix version dump at the end of the compile process if multiple compilers were built (instead of trying to "compile" one compiler with the other)

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'build-scripts/build-android-toolchain-linaro'
2--- build-scripts/build-android-toolchain-linaro 2011-10-05 08:53:46 +0000
3+++ build-scripts/build-android-toolchain-linaro 2011-11-04 21:37:24 +0000
4@@ -103,5 +103,7 @@
5 -f ../out/$TOOLCHAIN_TARBALL \
6 `basename $TOOLCHAIN_PREFIX`
7
8-# Dump version of built gcc
9-$TOOLCHAIN_PREFIX/bin/*-gcc -v
10+# Dump version of built gcc(s)
11+for i in $TOOLCHAIN_PREFIX/bin/*-gcc; do
12+ $i -v
13+done

Subscribers

People subscribed via source and target branches