From 54eb9067e15adcf0d978d0b672fe70cef0c05528 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 19 Oct 2016 20:50:33 -0700 Subject: [PATCH] Fixed bug 3460 - docs/README-macosx.md: g++fat.sh should be g++-fat.sh in universal build command Elis?e Maurer I scratched my head for a while until I realized there's a typo in the command listed in the instructions for universal Mac builds: https://hg.libsdl.org/SDL/file/3a3a88db1fc2/docs/README-macosx.md#l24 It should say `g++-fat.sh` but instead it says `g++fat.sh`, which makes `./configure` fail with a C++ preprocessor error. --- docs/README-macosx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README-macosx.md b/docs/README-macosx.md index 34234b1fc70de..869de2e52b941 100644 --- a/docs/README-macosx.md +++ b/docs/README-macosx.md @@ -21,7 +21,7 @@ the gcc-fat.sh script in build-scripts: mkdir mybuild cd mybuild - CC=$PWD/../build-scripts/gcc-fat.sh CXX=$PWD/../build-scripts/g++fat.sh ../configure + CC=$PWD/../build-scripts/gcc-fat.sh CXX=$PWD/../build-scripts/g++-fat.sh ../configure make sudo make install