[banshee] [build] Fix harmless error messages during make distcheck



commit 856335de7f668825883745856ea7e94d40d5391d
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Sun Jan 17 15:26:28 2010 +0100

    [build] Fix harmless error messages during make distcheck
    
    When HAVE_WEBKIT is not set, "make distcheck" would complain at various
    points because the ThemeIcons directory was not found.

 src/Extensions/Banshee.Wikipedia/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Extensions/Banshee.Wikipedia/Makefile.am b/src/Extensions/Banshee.Wikipedia/Makefile.am
index 1ec0d48..ef706e7 100644
--- a/src/Extensions/Banshee.Wikipedia/Makefile.am
+++ b/src/Extensions/Banshee.Wikipedia/Makefile.am
@@ -12,6 +12,6 @@ RESOURCES = Banshee.Wikipedia.addin.xml
 if HAVE_WEBKIT
 include $(top_srcdir)/build/build.mk
 else
-EXTRA_DIST = $(SOURCES) $(RESOURCES) $(shell find ThemeIcons -type f)
+EXTRA_DIST = $(SOURCES) $(RESOURCES) $(shell find $(srcdir)/ThemeIcons -type f)
 endif
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]