From b2d900a8a78ee9e24192b0527702d765675dc71a Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Thu, 3 Jul 2014 08:04:34 +0200 Subject: [PATCH] Sum-It was built in debug mode. Makes the executable 1MB instead of 30MB big! --- haiku-apps/sum_it/sum_it-0.2beta.recipe | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/haiku-apps/sum_it/sum_it-0.2beta.recipe b/haiku-apps/sum_it/sum_it-0.2beta.recipe index c73cc4c8e..280f56c43 100644 --- a/haiku-apps/sum_it/sum_it-0.2beta.recipe +++ b/haiku-apps/sum_it/sum_it-0.2beta.recipe @@ -10,7 +10,7 @@ COPYRIGHT="1996-1998, 2000 Hekkelman Programmatuur B.V. All rights reserved. 1999-2000 Tim Vernum. All rights reserved." HOMEPAGE="https://github.com/HaikuArchives/OpenSumIt" SRC_URI="git+https://github.com/HaikuArchives/OpenSumIt.git#cdab184a27" -REVISION="2" +REVISION="3" ARCHITECTURES="!x86 x86_gcc2" PROVIDES=" @@ -32,18 +32,18 @@ BUILD_PREREQUIRES=" BUILD() { pushd bsl - BE_C_COMPILER=gcc make + BE_C_COMPILER=gcc make DEBUG=0 PATH=`pwd`:$PATH popd pushd rez - BE_C_COMPILER=gcc make + BE_C_COMPILER=gcc make DEBUG=0 PATH=`pwd`:$PATH popd cd sum-it - BE_C_COMPILER=gcc make + BE_C_COMPILER=gcc make DEBUG=0 } INSTALL()