Commit c6dadfb1 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: As pointed by funman, remove a duplicate case.

parent d6164715
...@@ -132,12 +132,7 @@ if test "${ACTION}" = "build"; then ...@@ -132,12 +132,7 @@ if test "${ACTION}" = "build"; then
echo "Building library folder... ${linked_libs}" echo "Building library folder... ${linked_libs}"
for linked_lib in ${linked_libs} ; do for linked_lib in ${linked_libs} ; do
case "${linked_lib}" in case "${linked_lib}" in
*/extras/contrib/lib/*.dylib) */extras/contrib/lib/*.dylib|*/vlc_install_dir/lib/*.dylib)
if test -e ${linked_lib}; then
install_library ${linked_lib} ${target_lib} "library"
fi
;;
*/vlc_install_dir/lib/*.dylib)
if test -e ${linked_lib}; then if test -e ${linked_lib}; then
install_library ${linked_lib} ${target_lib} "library" install_library ${linked_lib} ${target_lib} "library"
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment