Commit 73b48064 authored by Christophe Massiot's avatar Christophe Massiot

Fixed the "locales have disappeared" problem under OS X.

parent f8397f7c
......@@ -452,9 +452,9 @@ VLC.app: vlc $(PLUGIN_FILES)
$(INSTALL) -d VLC.app/Contents/MacOS/share
$(INSTALL) -m 644 share/*.psf share/*.rle VLC.app/Contents/MacOS/share
$(INSTALL) -d VLC.app/Contents/MacOS/locale
for i in $(CATALOGS); do \
mkdir -p VLC.app/Contents/MacOS/locale/$${i%.gmo}/LC_MESSAGES ; \
cp po/$$i VLC.app/Contents/MacOS/locale/$${i%.gmo}/LC_MESSAGES/vlc.mo || true ; \
for i in $(ALL_LINGUAS); do \
mkdir -p VLC.app/Contents/MacOS/locale/$${i%}/LC_MESSAGES ; \
cp po/$${i}.gmo VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
done
echo -n "APPLVLC#" >| VLC.app/Contents/PkgInfo
endif
......
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