]> git.sesse.net Git - vlc/commitdiff
Do not bail out when no *.gmo exists.
authorChristophe Massiot <massiot@videolan.org>
Wed, 8 Jan 2003 23:15:13 +0000 (23:15 +0000)
committerChristophe Massiot <massiot@videolan.org>
Wed, 8 Jan 2003 23:15:13 +0000 (23:15 +0000)
Makefile.am

index 2dcffe8dcde239bc70b9e6758e7faf61b2271916..8e29cf94d5befd23b57bb5c96c14d0cd71da412e 100644 (file)
@@ -475,7 +475,7 @@ vlc.app: vlc $(PLUGIN_FILES)
        $(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 ; \
+               cp po/$$i vlc.app/Contents/MacOS/locale/$${i%.gmo}/LC_MESSAGES/vlc.mo || true ; \
        done
        echo -n "APPLVLC#" >| vlc.app/Contents/PkgInfo
 endif