Commit e358b6da authored by Christophe Massiot's avatar Christophe Massiot

Do not bail out when no *.gmo exists.

parent 0a1ba463
...@@ -475,7 +475,7 @@ vlc.app: vlc $(PLUGIN_FILES) ...@@ -475,7 +475,7 @@ vlc.app: vlc $(PLUGIN_FILES)
$(INSTALL) -d vlc.app/Contents/MacOS/locale $(INSTALL) -d vlc.app/Contents/MacOS/locale
for i in $(CATALOGS); do \ for i in $(CATALOGS); do \
mkdir -p vlc.app/Contents/MacOS/locale/$${i%.gmo}/LC_MESSAGES ; \ 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 ; \ cp po/$$i vlc.app/Contents/MacOS/locale/$${i%.gmo}/LC_MESSAGES/vlc.mo || true ; \
done done
echo -n "APPLVLC#" >| vlc.app/Contents/PkgInfo echo -n "APPLVLC#" >| vlc.app/Contents/PkgInfo
endif 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