[libzapojit] build: Fix srcdir != builddir



commit d27336d1a1fc29e919f5d1e54a0bae21728f82ff
Author: Colin Walters <walters verbum org>
Date:   Fri Aug 16 09:51:01 2013 -0400

    build: Fix srcdir != builddir
    
    The enum files are potentially in $(builddir), not $(srcdir); we
    should be able to just rely on Make's VPATH handling to DTRT.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=706137

 src/Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 3c2ff30..91dd619 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -96,8 +96,8 @@ Zpj_0_0_gir_INCLUDES = \
        $(NULL)
 
 Zpj_0_0_gir_FILES = \
-       $(addprefix $(srcdir)/,$(libzapojit_0_0_la_headers)) \
-       $(addprefix $(srcdir)/,$(libzapojit_0_0_la_SOURCES)) \
+       $(libzapojit_0_0_la_headers) \
+       $(libzapojit_0_0_la_SOURCES) \
        $(NULL)
 
 girdir = $(datadir)/gir-1.0


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