summaryrefslogtreecommitdiff
path: root/make.sh
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2014-05-13 10:36:11 +0000
committerJay Freeman <saurik@saurik.com>2014-05-13 10:36:11 +0000
commite78268a1ea4036d4690f2c69c3d9af162bb1bf2c (patch)
treec4ed329700cab9ce31e9510b9abd094b2d642fac /make.sh
parentc5045f96bf8c0513ffeeb116d4f8aa2f73bfe430 (diff)
Pass extra arguments to pkg:make through to make.
git-svn-id: http://svn.telesphoreo.org/trunk@784 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 cad872963..50f328655 100755
--- a/make.sh
+++ b/make.sh
@@ -139,7 +139,7 @@ function pkg:configure() {
export -f pkg:configure
function pkg:make() {
- make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb -fno-common'
+ make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb -fno-common' "$@"
}
export -f pkg:make