diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-06-19 09:19:46 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-06-19 09:22:44 -0400 |
commit | 2ef10ec734f6e4bedc758bbe654e659c4afe00a9 (patch) | |
tree | 904fccd3850c1a4f82e8a0d1fe4c388bb0599e61 | |
parent | 9beca004b9a6712343269a0d87fc3c3e905d7020 (diff) | |
download | rockbox-2ef10ec734.tar.gz rockbox-2ef10ec734.zip |
Fix typo in the previous commit
Change-Id: I9e8de11ba86e147abc9bb5b3dfcc550655fe360d
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 7e9a6e4222..2579a38933 100755 --- a/tools/configure +++ b/tools/configure @@ -263,7 +263,7 @@ simcc () { GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//` if [ "yes" = "$use_debug" ]; then - GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/-Og/` + GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/\ -Og/` fi GCCOPTS="$GCCOPTS -fno-builtin -g" |