Skip to content

Commit 54eb906

Browse files
committed
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.
1 parent 8a73f7e commit 54eb906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/README-macosx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the gcc-fat.sh script in build-scripts:
2121

2222
mkdir mybuild
2323
cd mybuild
24-
CC=$PWD/../build-scripts/gcc-fat.sh CXX=$PWD/../build-scripts/g++fat.sh ../configure
24+
CC=$PWD/../build-scripts/gcc-fat.sh CXX=$PWD/../build-scripts/g++-fat.sh ../configure
2525
make
2626
sudo make install
2727

0 commit comments

Comments
 (0)