summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-19 09:19:46 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-19 09:22:44 -0400
commit2ef10ec734f6e4bedc758bbe654e659c4afe00a9 (patch)
tree904fccd3850c1a4f82e8a0d1fe4c388bb0599e61
parent9beca004b9a6712343269a0d87fc3c3e905d7020 (diff)
downloadrockbox-2ef10ec734f6e4bedc758bbe654e659c4afe00a9.tar.gz
rockbox-2ef10ec734f6e4bedc758bbe654e659c4afe00a9.zip
Fix typo in the previous commit
Change-Id: I9e8de11ba86e147abc9bb5b3dfcc550655fe360d
-rwxr-xr-xtools/configure2
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 () {
263 GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//` 263 GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//`
264 264
265 if [ "yes" = "$use_debug" ]; then 265 if [ "yes" = "$use_debug" ]; then
266 GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/-Og/` 266 GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/\ -Og/`
267 fi 267 fi
268 268
269 GCCOPTS="$GCCOPTS -fno-builtin -g" 269 GCCOPTS="$GCCOPTS -fno-builtin -g"