[vlc-commits] macosx: remove the intermediate VLC-tmp.app after creating either VLC. app or VLC-release.app since it is of no use without further processing
Felix Paul Kühne
git at videolan.org
Wed Dec 28 01:39:52 CET 2011
vlc/vlc-1.2 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Dec 27 21:23:08 2011 +0100| [16b264c70e5d0e53341fb6775e1bb60ee3fa66ed] | committer: Jean-Baptiste Kempf
macosx: remove the intermediate VLC-tmp.app after creating either VLC.app or VLC-release.app since it is of no use without further processing
(cherry picked from commit 0c1d889772c303da34ea305bf808bc03ad5755df)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.2.git/?a=commit;h=16b264c70e5d0e53341fb6775e1bb60ee3fa66ed
---
extras/package/macosx/package.mak | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/extras/package/macosx/package.mak b/extras/package/macosx/package.mak
index 5fd43a0..ad5ff76 100644
--- a/extras/package/macosx/package.mak
+++ b/extras/package/macosx/package.mak
@@ -12,6 +12,7 @@ VLC.app: VLC-tmp.app
cp -R VLC-tmp.app $@
$(INSTALL) -m 0755 $(top_builddir)/bin/.libs/vlc $@/Contents/MacOS/VLC
$(LN_S) -f ../../../modules $@/Contents/MacOS/plugins
+ rm -Rf VLC-tmp.app
# VLC-release.app for packaging and giving it to your friends
# use package-macosx to get a nice dmg
@@ -22,8 +23,9 @@ VLC-release.app: VLC-tmp.app
find $@ -type d -exec chmod ugo+rx '{}' \;
find $@ -type f -exec chmod ugo+r '{}' \;
rm -Rf $@/Contents/Frameworks/BGHUDAppKit.framework/Resources/
+ rm -Rf VLC-tmp.app
-
+# common target to a VLC bundle used by both the dev and the release build
VLC-tmp.app: vlc
$(AM_V_GEN)(cd src && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd))
(cd lib && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd))
More information about the vlc-commits
mailing list