[vlc-commits] commit: osx-zip-packages: store symlinks as is to save disk space and shrink the package size ( Felix Paul Kühne )
git at videolan.org
git at videolan.org
Sat Mar 20 12:54:22 CET 2010
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Mar 20 12:53:44 2010 +0100| [e7da2d0afe9c3b3ff18292ddc6c51179a579c46a] | committer: Felix Paul Kühne
osx-zip-packages: store symlinks as is to save disk space and shrink the package size
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e7da2d0afe9c3b3ff18292ddc6c51179a579c46a
---
Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 355d8d3..a6884a6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1151,7 +1151,7 @@ package-macosx-zip: VLC-release.app
$(top_builddir)/vlc-$(VERSION)/Goodies
cp $(srcdir)/extras/package/macosx/README.MacOSX.rtf \
$(top_builddir)/vlc-$(VERSION)/Read\ Me.rtf
- zip -r $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
+ zip -r -y -9 $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
rm -Rf $(top_builddir)/vlc-$(VERSION)
package-macosx-framework-zip:
@@ -1163,7 +1163,7 @@ package-macosx-framework-zip:
for i in AUTHORS COPYING ChangeLog README THANKS NEWS; do \
cp $(srcdir)/$$i $(top_builddir)/vlckit-$(VERSION)/Goodies; \
done
- zip -r $(top_builddir)/vlckit-$(VERSION).zip $(top_builddir)/vlckit-$(VERSION)
+ zip -r -y -9 $(top_builddir)/vlckit-$(VERSION).zip $(top_builddir)/vlckit-$(VERSION)
rm -Rf $(top_builddir)/vlc-$(VERSION)
package-macosx-plugin:
More information about the vlc-commits
mailing list