[vlc-devel] commit: Fix package-macosx-plugin target on MacOS X 10.5 (Leopard). ( Jean-Paul Saman )
git version control
git at videolan.org
Tue Nov 11 14:44:48 CET 2008
vlc | branch: 0.8.6-bugfix | Jean-Paul Saman <jpsaman at videolan.org> | Mon Oct 27 17:14:05 2008 +0100| [578af5df020a05e7deb7f4b0fdf5b6c5d402814e] | committer: Jean-Paul Saman
Fix package-macosx-plugin target on MacOS X 10.5 (Leopard).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=578af5df020a05e7deb7f4b0fdf5b6c5d402814e
---
Makefile.am | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index b688bab..ba2203e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -903,7 +903,14 @@ if BUILD_MOZILLA
mkdir -p "$(top_builddir)/macosx-plugin-instdata"
cp -R "$(top_builddir)/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata"
rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg"
- /Developer/Tools/packagemaker -build -ds -p "$(top_builddir)/VLC Internet Plug-In.pkg" \
+ export PACKAGEMAKER=
+ if test -x /Developer/Tools/packagemaker; then \
+ export PACKAGEMAKER=/Developer/Tools/packagemaker; \
+ fi; \
+ if test -x /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; then \
+ export PACKAGEMAKER=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; \
+ fi; \
+ $${PACKAGEMAKER} -build -ds -p "$(top_builddir)/VLC Internet Plug-In.pkg" \
-f "$(top_builddir)/macosx-plugin-instdata" \
-i "$(srcdir)/extras/MacOSX/plugin/InstallerInfo.plist" \
-d "$(srcdir)/extras/MacOSX/plugin/InstallerDescription.plist"; true
More information about the vlc-devel
mailing list