Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-10 17:16:27 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-10 17:16:27 (GMT)
commit85a4c4adb350bb9bff3fb74c4e58a18b41b0544f (patch)
treee9f39db221c78bc78830ae77d8340c5d9536c75e
parentcb1119a6478c5938fd61055c179f6e4bfcf4dd39 (diff)
More distcheck fixes
-rw-r--r--browser/sessionstore/Makefile.am8
-rw-r--r--shell/extensions/Makefile.am11
2 files changed, 9 insertions, 10 deletions
diff --git a/browser/sessionstore/Makefile.am b/browser/sessionstore/Makefile.am
index ac9076a..75f46ff 100644
--- a/browser/sessionstore/Makefile.am
+++ b/browser/sessionstore/Makefile.am
@@ -4,8 +4,6 @@ sessionstore_DATA = \
nsISessionStore.xpt \
nsSessionStore.js
-EXTRA_DIST = $(sessionstore_DATA)
-
BUILT_SOURCES = \
nsISessionStore.xpt \
nsISessionStore.h
@@ -18,17 +16,17 @@ nsISessionStore.xpt: stamp-nsISessionStore.xpt
@true
stamp-nsISessionStore.xpt: nsISessionStore.idl
$(XPIDL) -m typelib -w -v -I $(MOZILLA_IDL_DIR) -e nsISessionStore.xpt \
- nsISessionStore.idl \
+ $(srcdir)/nsISessionStore.idl \
&& echo timestamp > $(@F)
nsISessionStore.h: stamp-nsISessionStore.h
@true
stamp-nsISessionStore.h: nsISessionStore.idl
$(XPIDL) -m header -w -v -I $(MOZILLA_IDL_DIR) -e nsISessionStore.h \
- nsISessionStore.idl \
+ $(srcdir)/nsISessionStore.idl \
&& echo timestamp > $(@F)
CLEANFILES = $(stamp_files) $(BUILT_SOURCES)
DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
-EXTRA_DIST = nsISessionStore.idl
+EXTRA_DIST = nsISessionStore.idl nsSessionStore.js
diff --git a/shell/extensions/Makefile.am b/shell/extensions/Makefile.am
index 71e34f1..4cee6d6 100644
--- a/shell/extensions/Makefile.am
+++ b/shell/extensions/Makefile.am
@@ -8,11 +8,12 @@ pkgpyexec_LTLIBRARIES = _extensions.la
_extensions_la_LDFLAGS = -module -avoid-version
-_extensions_la_CFLAGS = \
- $(WARN_CFLAGS) \
- $(PYTHON_INCLUDES) \
- $(PYGTK_CFLAGS) \
- $(SHELL_CFLAGS)
+_extensions_la_CFLAGS = \
+ $(WARN_CFLAGS) \
+ $(PYTHON_INCLUDES) \
+ $(PYGTK_CFLAGS) \
+ $(SHELL_CFLAGS) \
+ -I$(top_srcdir)/shell/extensions
_extensions_la_LIBADD = \
$(SHELL_LIBS) \