[vlc-devel] commit: macosx: As pointed by funman, remove a duplicate case. (Pierre d' Herbemont )
git version control
git at videolan.org
Tue Apr 15 22:49:54 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Tue Apr 15 22:50:41 2008 +0200| [c6dadfb18faf6254c1499543d50ea7f3ed6f7ee7]
macosx: As pointed by funman, remove a duplicate case.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c6dadfb18faf6254c1499543d50ea7f3ed6f7ee7
---
projects/macosx/framework/Pre-Compile.sh | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/projects/macosx/framework/Pre-Compile.sh b/projects/macosx/framework/Pre-Compile.sh
index fe50324..3490e7f 100644
--- a/projects/macosx/framework/Pre-Compile.sh
+++ b/projects/macosx/framework/Pre-Compile.sh
@@ -132,12 +132,7 @@ if test "${ACTION}" = "build"; then
echo "Building library folder... ${linked_libs}"
for linked_lib in ${linked_libs} ; do
case "${linked_lib}" in
- */extras/contrib/lib/*.dylib)
- if test -e ${linked_lib}; then
- install_library ${linked_lib} ${target_lib} "library"
- fi
- ;;
- */vlc_install_dir/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
More information about the vlc-devel
mailing list