configure: fix `mcpu` compiler parameter for RPI targets
authorcmitu <31816814+cmitu@users.noreply.github.com>
Wed, 28 Sep 2022 03:15:19 +0000 (04:15 +0100)
committeririxxxx <31696370+irixxxx@users.noreply.github.com>
Wed, 28 Sep 2022 19:57:03 +0000 (21:57 +0200)
configure

index a710718..f0bad74 100755 (executable)
--- a/configure
+++ b/configure
@@ -74,11 +74,11 @@ set_platform()
   platform=$1
   case "$platform" in
   rpi1)
-    MFLAGS="mcpu=arm1176jzf-s -mfpu=vfp"
+    MFLAGS="-mcpu=arm1176jzf-s -mfpu=vfp"
     have_gles="yes"
     ;;
   rpi2)
-    MFLAGS="mcpu=cortex-a7 -mfpu=neon"
+    MFLAGS="-mcpu=cortex-a7 -mfpu=neon"
     have_gles="yes"
     ;;
   generic)