[vlc-devel] commit: macosx: fix release bundle size by reverting [ 71c633a876550b6bb3178ee5e7ae5d737359d3f3] ( Felix Paul Kühne )
git version control
git at videolan.org
Sun Aug 16 14:39:01 CEST 2009
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Aug 16 14:35:23 2009 +0200| [9e59045920df8895f225d406f50f981cdfde14dc] | committer: Felix Paul Kühne
macosx: fix release bundle size by reverting [71c633a876550b6bb3178ee5e7ae5d737359d3f3]
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9e59045920df8895f225d406f50f981cdfde14dc
---
projects/macosx/framework/Pre-Compile.sh | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/projects/macosx/framework/Pre-Compile.sh b/projects/macosx/framework/Pre-Compile.sh
index 17a580c..4f98d7c 100644
--- a/projects/macosx/framework/Pre-Compile.sh
+++ b/projects/macosx/framework/Pre-Compile.sh
@@ -35,7 +35,7 @@ if test "${ACTION}" = "build"; then
target_modules="${target}/${modules}" # Should we consider using a different well-known folder like shared resources?
target_share="${target}/${share}" # Should we consider using a different well-known folder like shared resources?
target_include="${target}/${include}" # Should we consider using a different well-known folder like shared resources?
- linked_libs=" "
+ linked_libs=""
##########################
# @function install_library(src_lib, dest_dir, type, lib_install_prefix, destination_name)
@@ -81,11 +81,11 @@ if test "${ACTION}" = "build"; then
local name=`basename ${linked_lib}`
case "${linked_lib}" in
*/vlc_build_dir/* | */vlc_install_dir/* | *vlc* | */extras/contrib/lib/*)
-# if test -e ${linked_lib}; then
+ if test -e ${linked_lib}; then
install_name_tool -change "$linked_lib" "${lib_install_prefix}/${name}" "${lib_dest}"
linked_libs="${linked_libs} ${ref_lib}"
install_library ${linked_lib} ${target_lib} "library"
-# fi
+ fi
;;
esac
done
More information about the vlc-devel
mailing list