Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
libopus: A few fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwandroid committed Jun 14, 2017
1 parent 1187354 commit 1c33365
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libopus/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ set MSYSTEM=MINGW%ARCH%
set MSYS2_PATH_TYPE=inherit
set CHERE_INVOKING=1
bash -lc "%RECIPE_DIR%"/build.sh
if errorlevel 1 exit 1
if errorlevel 1 exit /b 1

4 changes: 3 additions & 1 deletion libopus/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ else
fi

./autogen.sh
./configure --prefix=${PREFIX} ${HOST_BUILD} && make -j${JOBS} && make install
./configure --prefix=${PREFIX} ${HOST_BUILD}
exit /b 1
make -j${JOBS} && make install

0 comments on commit 1c33365

Please sign in to comment.