diff options
author | Sam Lantinga <slouken@libsdl.org> | 2016-10-19 20:50:33 -0700 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2016-10-19 20:50:33 -0700 |
commit | 3de74e55e12f40cea471417ab732b71044ac3876 (patch) | |
tree | b1bec70f4379ac3d221ed49c5ca1244915ba0493 /docs | |
parent | 4606c00e7a322126c2988af0f0202e8f6c330218 (diff) |
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/c1bb718f6c3f/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.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README-macosx.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/README-macosx.md b/docs/README-macosx.md index 34234b1fc7..869de2e52b 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
|