summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2011-07-29 16:09:16 +0100
committerMartyn Russell <martyn@lanedo.com>2011-08-01 09:03:27 +0100
commitc90e32503639fe08daa14594a76e935f58caa189 (patch)
treeb49d408d030cd2c024972a9d5c390806aa0bee89
parentadbe5199a71e2ef39285d70a9dfceaa7d38c3086 (diff)
downloadtracker-c90e32503639fe08daa14594a76e935f58caa189.tar.gz
firefox, thunderbird: Fixed distcheck issues
All _DATA variables were missing from EXTRA_DIST
-rw-r--r--src/plugins/firefox/Makefile.am2
-rw-r--r--src/plugins/firefox/chrome/content/Makefile.am2
-rw-r--r--src/plugins/firefox/chrome/locale/en-US/Makefile.am2
-rw-r--r--src/plugins/firefox/chrome/locale/es-ES/Makefile.am2
-rw-r--r--src/plugins/firefox/chrome/locale/fr-FR/Makefile.am2
-rw-r--r--src/plugins/firefox/chrome/skin/Makefile.am2
-rw-r--r--src/plugins/firefox/defaults/preferences/Makefile.am2
-rw-r--r--src/plugins/thunderbird/Makefile.am2
-rw-r--r--src/plugins/thunderbird/chrome/content/Makefile.am2
-rw-r--r--src/plugins/thunderbird/chrome/locale/en-US/Makefile.am2
-rw-r--r--src/plugins/thunderbird/chrome/skin/Makefile.am2
-rw-r--r--src/plugins/thunderbird/defaults/preferences/Makefile.am2
12 files changed, 24 insertions, 0 deletions
diff --git a/src/plugins/firefox/Makefile.am b/src/plugins/firefox/Makefile.am
index b62743078..5da619098 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 c51e8749f..05eb8250c 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 d7ff79143..237a789b7 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 ac243e99a..146866936 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 7d3f910db..14800f816 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 80abb1779..edd9e2fcf 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 0876a3a90..675876889 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 7fc569c52..28f2f4f54 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 c2c08a25b..504b17119 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 200382e7f..2c72a30de 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 c00768859..3d864ecbb 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 4fb9c62eb..d75285146 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)