[tracker] firefox, thunderbird: Fixed distcheck issues
- From: Martyn James Russell <mr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] firefox, thunderbird: Fixed distcheck issues
- Date: Mon, 1 Aug 2011 08:03:35 +0000 (UTC)
commit c90e32503639fe08daa14594a76e935f58caa189
Author: Martyn Russell <martyn lanedo com>
Date: Fri Jul 29 16:09:16 2011 +0100
firefox, thunderbird: Fixed distcheck issues
All _DATA variables were missing from EXTRA_DIST
src/plugins/firefox/Makefile.am | 2 ++
src/plugins/firefox/chrome/content/Makefile.am | 2 ++
.../firefox/chrome/locale/en-US/Makefile.am | 2 ++
.../firefox/chrome/locale/es-ES/Makefile.am | 2 ++
.../firefox/chrome/locale/fr-FR/Makefile.am | 2 ++
src/plugins/firefox/chrome/skin/Makefile.am | 2 ++
.../firefox/defaults/preferences/Makefile.am | 2 ++
src/plugins/thunderbird/Makefile.am | 2 ++
src/plugins/thunderbird/chrome/content/Makefile.am | 2 ++
.../thunderbird/chrome/locale/en-US/Makefile.am | 2 ++
src/plugins/thunderbird/chrome/skin/Makefile.am | 2 ++
.../thunderbird/defaults/preferences/Makefile.am | 2 ++
12 files changed, 24 insertions(+), 0 deletions(-)
---
diff --git a/src/plugins/firefox/Makefile.am b/src/plugins/firefox/Makefile.am
index b627430..5da6190 100644
--- a/src/plugins/firefox/Makefile.am
+++ b/src/plugins/firefox/Makefile.am
@@ -9,6 +9,8 @@ extension_DATA = \
README \
COPYRIGHT
+EXTRA_DIST = $(extension_DATA)
+
install-data-hook:
mkdir -p "$(TRACKER_MINER_FIREFOX_INSTALL_DIR)"
$(LN_S) "$(extensiondir)" "$(TRACKER_MINER_FIREFOX_INSTALL_DIR)/trackerfox bustany org"
diff --git a/src/plugins/firefox/chrome/content/Makefile.am b/src/plugins/firefox/chrome/content/Makefile.am
index c51e874..05eb825 100644
--- a/src/plugins/firefox/chrome/content/Makefile.am
+++ b/src/plugins/firefox/chrome/content/Makefile.am
@@ -8,3 +8,5 @@ extension_DATA = \
ff-overlay.xul \
namespace.js \
plugin.js
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/firefox/chrome/locale/en-US/Makefile.am b/src/plugins/firefox/chrome/locale/en-US/Makefile.am
index d7ff791..237a789 100644
--- a/src/plugins/firefox/chrome/locale/en-US/Makefile.am
+++ b/src/plugins/firefox/chrome/locale/en-US/Makefile.am
@@ -5,3 +5,5 @@ extension_DATA = \
about.dtd \
overlay.dtd \
overlay.properties
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/firefox/chrome/locale/es-ES/Makefile.am b/src/plugins/firefox/chrome/locale/es-ES/Makefile.am
index ac243e9..1468669 100644
--- a/src/plugins/firefox/chrome/locale/es-ES/Makefile.am
+++ b/src/plugins/firefox/chrome/locale/es-ES/Makefile.am
@@ -5,3 +5,5 @@ extension_DATA = \
about.dtd \
overlay.dtd \
overlay.properties
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/firefox/chrome/locale/fr-FR/Makefile.am b/src/plugins/firefox/chrome/locale/fr-FR/Makefile.am
index 7d3f910..14800f8 100644
--- a/src/plugins/firefox/chrome/locale/fr-FR/Makefile.am
+++ b/src/plugins/firefox/chrome/locale/fr-FR/Makefile.am
@@ -5,3 +5,5 @@ extension_DATA = \
about.dtd \
overlay.dtd \
overlay.properties
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/firefox/chrome/skin/Makefile.am b/src/plugins/firefox/chrome/skin/Makefile.am
index 80abb17..edd9e2f 100644
--- a/src/plugins/firefox/chrome/skin/Makefile.am
+++ b/src/plugins/firefox/chrome/skin/Makefile.am
@@ -3,3 +3,5 @@ include $(top_srcdir)/Makefile.decl
extensiondir = $(datadir)/xul-ext/trackerfox/chrome/skin
extension_DATA = \
overlay.css
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/firefox/defaults/preferences/Makefile.am b/src/plugins/firefox/defaults/preferences/Makefile.am
index 0876a3a..6758768 100644
--- a/src/plugins/firefox/defaults/preferences/Makefile.am
+++ b/src/plugins/firefox/defaults/preferences/Makefile.am
@@ -3,3 +3,5 @@ include $(top_srcdir)/Makefile.decl
extensiondir = $(datadir)/xul-ext/trackerfox/defaults/preferences
extension_DATA = \
prefs.js
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/thunderbird/Makefile.am b/src/plugins/thunderbird/Makefile.am
index 7fc569c..28f2f4f 100644
--- a/src/plugins/thunderbird/Makefile.am
+++ b/src/plugins/thunderbird/Makefile.am
@@ -8,6 +8,8 @@ extension_DATA = \
chrome.manifest \
README
+EXTRA_DIST = $(extension_DATA)
+
install-data-hook:
mkdir -p "$(TRACKER_MINER_THUNDERBIRD_INSTALL_DIR)"
$(LN_S) "$(extensiondir)" "$(TRACKER_MINER_THUNDERBIRD_INSTALL_DIR)/trackerbird bustany org"
diff --git a/src/plugins/thunderbird/chrome/content/Makefile.am b/src/plugins/thunderbird/chrome/content/Makefile.am
index c2c08a2..504b171 100644
--- a/src/plugins/thunderbird/chrome/content/Makefile.am
+++ b/src/plugins/thunderbird/chrome/content/Makefile.am
@@ -14,3 +14,5 @@ extension_DATA = \
persistent-store.js \
ui.js \
trackerstore.js
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/thunderbird/chrome/locale/en-US/Makefile.am b/src/plugins/thunderbird/chrome/locale/en-US/Makefile.am
index 200382e..2c72a30 100644
--- a/src/plugins/thunderbird/chrome/locale/en-US/Makefile.am
+++ b/src/plugins/thunderbird/chrome/locale/en-US/Makefile.am
@@ -6,3 +6,5 @@ extension_DATA = \
about.dtd \
overlay.dtd \
overlay.properties
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/thunderbird/chrome/skin/Makefile.am b/src/plugins/thunderbird/chrome/skin/Makefile.am
index c007688..3d864ec 100644
--- a/src/plugins/thunderbird/chrome/skin/Makefile.am
+++ b/src/plugins/thunderbird/chrome/skin/Makefile.am
@@ -3,3 +3,5 @@ include $(top_srcdir)/Makefile.decl
extensiondir = $(datadir)/xul-ext/trackerbird/chrome/skin
extension_DATA = \
overlay.css
+
+EXTRA_DIST = $(extension_DATA)
diff --git a/src/plugins/thunderbird/defaults/preferences/Makefile.am b/src/plugins/thunderbird/defaults/preferences/Makefile.am
index 4fb9c62..d752851 100644
--- a/src/plugins/thunderbird/defaults/preferences/Makefile.am
+++ b/src/plugins/thunderbird/defaults/preferences/Makefile.am
@@ -3,3 +3,5 @@ include $(top_srcdir)/Makefile.decl
extensiondir = $(datadir)/xul-ext/trackerbird/defaults/preferences
extension_DATA = \
prefs.js
+
+EXTRA_DIST = $(extension_DATA)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]