[rygel] build: Don't use relative paths



commit a04677b02fe16671ecd934543f66914f5964dc9c
Author: Jens Georg <jensg openismus com>
Date:   Fri May 10 15:05:40 2013 +0200

    build: Don't use relative paths

 data/Makefile.am                      |    2 +-
 examples/Makefile.am                  |    2 +-
 src/librygel-core/Makefile.am         |    2 +-
 src/librygel-renderer-gst/Makefile.am |    2 +-
 src/librygel-renderer/Makefile.am     |    2 +-
 src/librygel-server/Makefile.am       |    2 +-
 src/plugins/external/Makefile.am      |    2 +-
 src/plugins/mediathek/Makefile.am     |    2 +-
 src/plugins/mpris/Makefile.am         |    2 +-
 src/plugins/playbin/Makefile.am       |    2 +-
 src/rygel/Makefile.am                 |    2 +-
 src/ui/Makefile.am                    |    2 +-
 tests/Makefile.am                     |    2 +-
 13 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/data/Makefile.am b/data/Makefile.am
index 7bd3fb1..2ec40f1 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,4 +1,4 @@
-include ../common.am
+include $(top_srcdir)/common.am
 
 SUBDIRS = xml icons
 
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 1182364..7f7a7a1 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -8,7 +8,7 @@ endif
 SUBDIRS = $(EXAMPLE_PLUGINS)
 
 
-include ../common.am
+include $(top_srcdir)/common.am
 
 
 #TODO: Remove the src/rygel from here?
diff --git a/src/librygel-core/Makefile.am b/src/librygel-core/Makefile.am
index 1c839b3..64194f4 100644
--- a/src/librygel-core/Makefile.am
+++ b/src/librygel-core/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 include $(srcdir)/filelist.am
 
 librygelincdir = $(includedir)/rygel-2.0
diff --git a/src/librygel-renderer-gst/Makefile.am b/src/librygel-renderer-gst/Makefile.am
index bc7e84a..40fa5a2 100644
--- a/src/librygel-renderer-gst/Makefile.am
+++ b/src/librygel-renderer-gst/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 include $(srcdir)/filelist.am
 
 librygel_renderer_includedir=$(includedir)/rygel-2.0
diff --git a/src/librygel-renderer/Makefile.am b/src/librygel-renderer/Makefile.am
index 438e371..c1248d6 100644
--- a/src/librygel-renderer/Makefile.am
+++ b/src/librygel-renderer/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 include $(srcdir)/filelist.am
 
 librygel_renderer_includedir=$(includedir)/rygel-2.0
diff --git a/src/librygel-server/Makefile.am b/src/librygel-server/Makefile.am
index c284ed7..d083c95 100644
--- a/src/librygel-server/Makefile.am
+++ b/src/librygel-server/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 include $(srcdir)/filelist.am
 
 librygel_server_includedir=$(includedir)/rygel-2.0
diff --git a/src/plugins/external/Makefile.am b/src/plugins/external/Makefile.am
index 7097309..3d28073 100644
--- a/src/plugins/external/Makefile.am
+++ b/src/plugins/external/Makefile.am
@@ -1,4 +1,4 @@
-include ../../../common.am
+include $(top_srcdir)/common.am
 
 plugin_LTLIBRARIES = librygel-external.la
 plugin_DATA = external.plugin
diff --git a/src/plugins/mediathek/Makefile.am b/src/plugins/mediathek/Makefile.am
index 9e7faa3..5475897 100644
--- a/src/plugins/mediathek/Makefile.am
+++ b/src/plugins/mediathek/Makefile.am
@@ -1,4 +1,4 @@
-include ../../../common.am
+include $(top_srcdir)/common.am
 
 plugin_LTLIBRARIES = librygel-mediathek.la
 plugin_DATA = mediathek.plugin
diff --git a/src/plugins/mpris/Makefile.am b/src/plugins/mpris/Makefile.am
index e886ea7..c672e2b 100644
--- a/src/plugins/mpris/Makefile.am
+++ b/src/plugins/mpris/Makefile.am
@@ -1,4 +1,4 @@
-include ../../../common.am
+include $(top_srcdir)/common.am
 
 plugin_LTLIBRARIES = librygel-mpris.la
 plugin_DATA = mpris.plugin
diff --git a/src/plugins/playbin/Makefile.am b/src/plugins/playbin/Makefile.am
index f0628be..357e36f 100644
--- a/src/plugins/playbin/Makefile.am
+++ b/src/plugins/playbin/Makefile.am
@@ -1,4 +1,4 @@
-include ../../../common.am
+include $(top_srcdir)/common.am
 
 plugin_LTLIBRARIES = librygel-playbin.la
 plugin_DATA = playbin.plugin
diff --git a/src/rygel/Makefile.am b/src/rygel/Makefile.am
index ffaad53..843dba0 100644
--- a/src/rygel/Makefile.am
+++ b/src/rygel/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 
 bin_PROGRAMS = rygel
 
diff --git a/src/ui/Makefile.am b/src/ui/Makefile.am
index c050311..2fb7440 100644
--- a/src/ui/Makefile.am
+++ b/src/ui/Makefile.am
@@ -1,4 +1,4 @@
-include ../../common.am
+include $(top_srcdir)/common.am
 
 bin_PROGRAMS = rygel-preferences
 
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 9efd1a3..a790084 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,4 +1,4 @@
-include ../common.am
+include $(top_srcdir)/common.am
 
 check_PROGRAMS = rygel-http-item-uri-test \
                 rygel-http-response-test \


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