Commit a7494394 authored by Eric Petit's avatar Eric Petit

Makefile.am: fixed BeOS package generation when all modules are built-in

parent 21c7ad61
...@@ -587,7 +587,10 @@ package-beos: ...@@ -587,7 +587,10 @@ package-beos:
mv tmp/vlc-${VERSION}-BeOS.zip . mv tmp/vlc-${VERSION}-BeOS.zip .
# Create package without debug symbols # Create package without debug symbols
strip tmp/vlc-${VERSION}/vlc tmp/vlc-${VERSION}/plugins/lib*_plugin.so strip tmp/vlc-${VERSION}/vlc
if [ -d tmp/vlc-${VERSION}/plugins ]; then \
strip tmp/vlc-${VERSION}/plugins/lib*_plugin.so; \
fi
xres -o tmp/vlc-${VERSION}/vlc share/vlc_beos.rsrc xres -o tmp/vlc-${VERSION}/vlc share/vlc_beos.rsrc
mimeset -f tmp/vlc-${VERSION}/* tmp/vlc-${VERSION}/*/* mimeset -f tmp/vlc-${VERSION}/* tmp/vlc-${VERSION}/*/*
(cd tmp ; zip -9 -r vlc-${VERSION}-BeOS-stripped.zip vlc-${VERSION} ) (cd tmp ; zip -9 -r vlc-${VERSION}-BeOS-stripped.zip vlc-${VERSION} )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment