summaryrefslogtreecommitdiff
path: root/make.sh
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2014-05-13 10:35:12 +0000
committerJay Freeman <saurik@saurik.com>2014-05-13 10:35:12 +0000
commit2302cce14d77e6518feb4793b2b8db90dab913c6 (patch)
tree66b7eb78e4dbc9f9546437746c165812fa510c46 /make.sh
parent85e3a5f9233e59fb4aaf96839465b94346a12616 (diff)
Always override the compiler used in pkg:make.
git-svn-id: http://svn.telesphoreo.org/trunk@782 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'make.sh')
-rwxr-xr-xmake.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.sh b/make.sh
index c36ec2d64..adfe5092b 100755
--- a/make.sh
+++ b/make.sh
@@ -139,7 +139,7 @@ function pkg:configure() {
export -f pkg:configure
function pkg:make() {
- make AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb'
+ make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb'
}
export -f pkg:make