diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6a46ccc..6a7dd61 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: # Install required packages - name: Install Packages - run: sudo apt-get update && sudo apt-get install -y mingw-w64 zip libtool autopoint automake + run: sudo apt-get update && sudo apt-get install -y mingw-w64 zip libtool autopoint automake libtool-bin # Download the submodules - name: Download the submodules diff --git a/Makefile b/Makefile index 85a9a03..7c4e11a 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ ecmtool: ########## FLAC MAKE ########## cd flac && bash autogen.sh && ./configure --enable-static --disable-xmms-plugin --disable-ogg --disable-oggtest --disable-examples --enable-shared=no --disable-cpplibs --disable-doxygen-docs make -C flac clean - make -C flac -j$(nproc) + cd flac/src/libFLAC && make -j$(nproc) ########## END FLAC MAKE ########## # Compile the Linux release @@ -61,7 +61,7 @@ ecmtool.exe: ########## FLAC MAKE ########## cd flac && bash autogen.sh && ./configure --host=x86_64-w64-mingw32 --enable-static --disable-xmms-plugin --disable-ogg --disable-oggtest --disable-examples --enable-shared=no --disable-cpplibs --disable-doxygen-docs make -C flac clean - cd flac && make -j$(nproc) + cd flac/src/libFLAC && make -j$(nproc) ########## END FLAC MAKE ########## # Compile the Win64 release