diff options
author | Chris Larson <clarson@kergoth.com> | 2004-08-16 06:21:52 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-08-16 06:21:52 +0000 |
commit | 1daf8ca9a8267680f1c20dbe47003efc62f3c675 (patch) | |
tree | a41f9afabc8527b26d57fac849efd2b51d66f485 /conf/oe.conf | |
parent | d96c2288e5ca5f9b587a116b095c8fb39b99eb10 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages
2004/08/16 01:21:46-05:00 handhelds.org!kergoth
Dont expand SELECTED_OPTIMIZATION immediately, so the user can manipulate optimizations properly in their configuration files.
BKrev: 412052807Dpa17NPDDhq4yzGOo_AXQ
Diffstat (limited to 'conf/oe.conf')
-rw-r--r-- | conf/oe.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/oe.conf b/conf/oe.conf index 7b069c54cf..8a5d6d4142 100644 --- a/conf/oe.conf +++ b/conf/oe.conf @@ -275,7 +275,7 @@ ALLOWED_FLAGS = "-O -mcpu -march -pipe" # Optimization flags FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2" DEBUG_OPTIMIZATION = "-O -g" -SELECTED_OPTIMIZATION := "${@oe.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][oe.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" +SELECTED_OPTIMIZATION = "${@oe.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][oe.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" BUILD_OPTIMIZATION = "-O2" # flags |