[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
Tue Dec 27 21:23:13 CET 2011


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Dec 27 21:23:08 2011 +0100| [0c1d889772c303da34ea305bf808bc03ad5755df] | committer: Felix Paul Kühne

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

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

 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 ab4d096..499698e 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