diff options
author | Nicolas Bruguier <nicolas.bruguier@supersonicimagine.fr> | 2008-11-30 18:14:40 +0100 |
---|---|---|
committer | Nicolas Bruguier <nicolas.bruguier@supersonicimagine.fr> | 2008-11-30 18:14:40 +0100 |
commit | 68492bd15c925e9d954e0879ab7f407006ad343f (patch) | |
tree | 43b14d4d435baf40ac631c8494484295daec3c8a | |
parent | 303c708eb4bc02ee4d361579bd7b16454fab9e8d (diff) |
[cgl] Add EXTRA_DIST files only if backend is enabled
Add EXTRA_DIST files only if backend is enbled to avoid error to build
dist if cgl is not enabled.
-rw-r--r-- | src/cgl/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cgl/Makefile.am b/src/cgl/Makefile.am index 1906385..02cb57d 100644 --- a/src/cgl/Makefile.am +++ b/src/cgl/Makefile.am @@ -23,8 +23,6 @@ libglitz_cgl_la_LIBADD = $(GLITZ_LIB) $(CGL_LIBS) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = glitz-cgl.pc -endif - EXTRA_DIST = \ glitz-cgl.h \ glitz_cgl_drawable.c \ @@ -36,3 +34,6 @@ EXTRA_DIST = \ glitz_cglint.h \ glitz-cgl.pc.in \ glitz-cgl.man + +endif + |