diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-02-11 23:04:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-11 23:04:22 +0000 |
commit | 83db7615daa10a67592c0145ebadefa78c8a1f55 (patch) | |
tree | 829c538793c6d27ab913ff22565940d622a540ae /tools/configure | |
parent | af56130a4ac0a046caff495a7ee570e914e4450b (diff) |
set MEMORYSIZE in simulator builds too for better simulation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5921 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 788dcfef54..939976597c 100755 --- a/tools/configure +++ b/tools/configure @@ -108,6 +108,7 @@ sed > Makefile \ -e "s,@TARGET@,${target},g" \ -e "s,@PLUGINS@,${plugins},g" \ -e "s,@SIMVER@,${simver},g" \ + -e "s,@MEMORY@,${memory},g" \ <<EOF ## Automaticly generated. http://rockbox.haxx.se @@ -127,6 +128,7 @@ export TARGET=@TARGET@ export LANGUAGE=@LANGUAGE@ export VERSION=\$(shell date +%y%m%d-%H%M) export ENABLEDPLUGINS=@PLUGINS@ +export MEMORYSIZE=@MEMORY@ .PHONY: |