GNOME Bugzilla – Bug 569955
fails to build from outside source tree
Last modified: 2009-01-31 13:12:55 UTC
When building gnome-settings-daemon from outside source tree, an error was found under plugins/media-keys/ subdir: ---8<--- /home/thep/vcs/gnome_svn/gnome-settings-daemon/plugins/media-keys/gsd-media-keys-manager.c:54:31: error: gvc-mixer-control.h: No such file or directory ---8<--- This is because "-I$(top_builddir)/plugins/media-keys/cut-n-paste", instead of $(top_srcdir)-rooted one, was supplied as CPPFLAGS in plugins/media-keys/Makefile.am. In $(top_builddir)/plugins/media-keys/cut-n-paste/, there was no any generated header file for use. So, the real intention here should be $(top_srcdir) instead.
Created attachment 127614 [details] [review] Replace $(top_builddir) with $(top_srcdir) With this patch, g-s-d can be built off source-dir in my machine.
Thanks, please commit.
2009-01-31 Theppitak Karoonboonyanan <thep@linux.thai.net> * plugins/media-keys/Makefile.am: Fix include paths for non-source-dir builds. (bug #569955)