diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 2a0184f..f105d41 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -17,7 +17,7 @@ You'll need to download and install the following to build Citra: - FDK-AAC * Deb: `apt-get install libfdk-aac-dev` * Arch: `pacman -S libfdk-aac-dev` - * Fedora: `dnf install fdk-aac-free-devel` + * Fedora: `dnf install fdk-aac-devel` - [FFMPEG](https://ffmpeg.org/download.html#build-linux) 4.0+ * Compiler: GCC or Clang. You only need one of these two: * GCC 7.0+. @@ -53,7 +53,7 @@ cmake ../ make sudo make install (optional) ``` -- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG` instead. +- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG=ON` instead. Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI). @@ -78,7 +78,7 @@ cmake .. -DCMAKE_BUILD_TYPE=Release make sudo make install (optional) ``` -- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG` instead. +- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG=ON` instead. ### Building with debug symbols: