[vlc-devel] commit: macosx: Use mv and chmod instead of install which doesn' t work out-of-the-box here. (Pierre d'Herbemont )

git version control git at videolan.org
Tue Apr 15 22:57:15 CEST 2008


vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Tue Apr 15 22:58:02 2008 +0200| [3d8e99515c69bbe29df4be05d05fe3973ca1a73a]

macosx: Use mv and chmod instead of install which doesn't work out-of-the-box here.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3d8e99515c69bbe29df4be05d05fe3973ca1a73a
---

 projects/macosx/framework/Pre-Compile.sh |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/projects/macosx/framework/Pre-Compile.sh b/projects/macosx/framework/Pre-Compile.sh
index 3490e7f..cf791d4 100644
--- a/projects/macosx/framework/Pre-Compile.sh
+++ b/projects/macosx/framework/Pre-Compile.sh
@@ -92,7 +92,8 @@ if test "${ACTION}" = "build"; then
     if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
         prefix=".libs/"
         install_library "${VLC_BUILD_DIR}/src/${prefix}vlc" "${target}" "bin" "@loader_path/lib"
-        install ${target}/vlc ${target}/VLC
+        mv ${target}/vlc ${target}/VLC
+        chmod +x ${target}/VLC
         suffix="dylib"
     else
         prefix=""




More information about the vlc-devel mailing list