source: gs2-extensions/gnome-lib/trunk/src/ANDROID-FIX-CONFIG.sh@ 30965

Last change on this file since 30965 was 26790, checked in by davidb, 11 years ago

Config update needed by Android NDK now in a separate file

  • Property svn:executable set to *
File size: 610 bytes
Line 
1#!/bin/bash
2
3echo "****"
4echo "* For Android cross-compiling, not all tarred-up packages"
5echo "* are new enough to shiip with configure files (config.guess"
6echo "* and config.sub) that recognize android as a --host choice"
7echo "****"
8
9echo "..."
10sleep 2
11
12./CASCADE-MAKE.sh untar
13echo "=> Updating config.guess to newer version for all packages"
14find packages -name "config.guess" -exec /bin/cp android-extra/config.guess {} \; -print
15echo "=> Updating config.sub to newer version for all packages"
16find packages -name "config.sub" -exec /bin/cp android-extra/config.sub {} \; -print
17
18echo "****"
19sleep 2
20
21
Note: See TracBrowser for help on using the repository browser.