1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-04 22:49:07 +02:00

Merge pull request #56 from lllucius/master

Fix for bug #1046 - LADSPA Hard Limiter included on Mac.
This commit is contained in:
James Crook 2015-06-25 07:48:09 +01:00
commit 5bb3bb1f9e

View File

@ -63,7 +63,6 @@ function build
function cleanAction function cleanAction
{ {
[ -d "${TARGET_TEMP_DIR}" ] && rm -rf "${TARGET_TEMP_DIR}" [ -d "${TARGET_TEMP_DIR}" ] && rm -rf "${TARGET_TEMP_DIR}"
rm -f "${TARGET_BUILD_DIR}/hard_limiter_1413.so"
rm -f "${TARGET_BUILD_DIR}/sc4_1882.so" rm -f "${TARGET_BUILD_DIR}/sc4_1882.so"
} }
@ -87,7 +86,6 @@ function buildAction
echo >config.h echo >config.h
# Build the 2 standard plugins # Build the 2 standard plugins
build hard_limiter_1413 hard_limiter_1413.c
build sc4_1882 sc4_1882.c util/db.c util/rms.c build sc4_1882 sc4_1882.c util/db.c util/rms.c
} }