Changeset 146017 in webkit


Ignore:
Timestamp:
Mar 17, 2013 11:10:25 AM (11 years ago)
Author:
kov@webkit.org
Message:

[GTK] Fix and improve dist hooks for translations
https://bugs.webkit.org/show_bug.cgi?id=112519

Reviewed by Carlos Garcia Campos.

Source/WebCore:

  • GNUmakefile.am: move translation-related rules and lists to the po directory's

GNUmakefile.am.

Source/WebCore/platform/gtk/po:

  • GNUmakefile.am: move dist-related rules here; also move translation-related files

to this file's EXTRA_DIST, making sure to only list the files we actually want
shipped, so junk such as .orig, .rej and backup files do not end up in the tarball.

Source/WebKit/gtk:

  • GNUmakefile.am: removed left-over translation files from EXTRA_DIST
Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r146014 r146017  
     12013-03-17  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] Fix and improve dist hooks for translations
     4        https://bugs.webkit.org/show_bug.cgi?id=112519
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * GNUmakefile.am: move translation-related rules and lists to the po directory's
     9        GNUmakefile.am.
     10
    1112013-03-17  Emil A Eklund  <eae@chromium.org>
    212
  • trunk/Source/WebCore/GNUmakefile.am

    r145561 r146017  
    638638        $(wildcard $(srcdir)/Source/WebCore/loader/appcache/*.idl) \
    639639        $(wildcard $(srcdir)/Source/WebCore/page/*.idl) \
    640         $(wildcard $(srcdir)/Source/WebCore/platform/gtk/po/*) \
    641640        $(wildcard $(srcdir)/Source/WebCore/plugins/*.idl) \
    642641        $(wildcard $(srcdir)/Source/WebCore/storage/*.idl) \
  • trunk/Source/WebCore/platform/gtk/po/ChangeLog

    r145936 r146017  
     12013-03-17  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] Fix and improve dist hooks for translations
     4        https://bugs.webkit.org/show_bug.cgi?id=112519
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * GNUmakefile.am: move dist-related rules here; also move translation-related files
     9        to this file's EXTRA_DIST, making sure to only list the files we actually want
     10        shipped, so junk such as .orig, .rej and backup files do not end up in the tarball.
     11
    1122013-03-15  Gustavo Noronha Silva  <gns@gnome.org>
    213
  • trunk/Source/WebCore/platform/gtk/po/GNUmakefile.am

    r145081 r146017  
    146146        $(top_builddir)/Source/WebCore/platform/gtk/po/$(DOMAIN).pot
    147147
     148EXTRA_DIST += \
     149        $(srcdir)/Source/WebCore/platform/gtk/po/ChangeLog \
     150        $(srcdir)/Source/WebCore/platform/gtk/po/POTFILES.in \
     151        $(srcdir)/Source/WebCore/platform/gtk/po/README \
     152        $(wildcard $(srcdir)/Source/WebCore/platform/gtk/po/*.po)
     153
    148154DISTCLEANFILES += \
    149155        $(ALL_MOFILES) \
     
    233239          done; \
    234240        done
     241
     242install-data-local: po-install-data-local
     243installdirs-data-local: po-installdirs-data-local
     244uninstall-local: po-uninstall-local
  • trunk/Source/WebKit/gtk/ChangeLog

    r145914 r146017  
     12013-03-17  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] Fix and improve dist hooks for translations
     4        https://bugs.webkit.org/show_bug.cgi?id=112519
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * GNUmakefile.am: removed left-over translation files from EXTRA_DIST
     9
    1102013-03-15  Nate Chapin  <japhet@chromium.org>
    211
  • trunk/Source/WebKit/gtk/GNUmakefile.am

    r145552 r146017  
    417417        $(WebKit)/docs/webkitgtk-overrides.txt \
    418418        $(WebKit)/webkitmarshal.list \
    419         $(WebKit)/po/* \
    420419        $(WebKit)/resources/* \
    421420        $(WebKit)/tests/resources/* \
     
    646645        $(top_builddir)/Source/WebKit/gtk/org.webkitgtk-@WEBKITGTK_API_VERSION@.gschema.xml \
    647646        $(top_builddir)/Source/WebKit/gtk/webkit/webkitversion.h
    648 
    649 install-data-local: po-install-data-local
    650 installdirs-data-local: po-installdirs-data-local
    651 uninstall-local: po-uninstall-local
    652 
Note: See TracChangeset for help on using the changeset viewer.