Sum-It was built in debug mode.

Makes the executable 1MB instead of 30MB big!
This commit is contained in:
Adrien Destugues
2014-07-03 08:04:34 +02:00
parent 83a27ea3e5
commit b2d900a8a7

View File

@@ -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()