summaryrefslogtreecommitdiff
path: root/modules/printbackends
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-04-29 03:41:53 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-04-29 03:41:53 +0000
commitfd57356b2fff554575933f1fad86f2e8485aa439 (patch)
tree32ff5e146d806fe212556737d8bfd0cbba766a7b /modules/printbackends
parent88d4546a36fd9f6d3117a97dc6c1d06629dc2b78 (diff)
downloadgdk-pixbuf-fd57356b2fff554575933f1fad86f2e8485aa439.tar.gz
Make building the test print backend optional
svn path=/trunk/; revision=17687
Diffstat (limited to 'modules/printbackends')
-rw-r--r--modules/printbackends/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/printbackends/Makefile.am b/modules/printbackends/Makefile.am
index 58c03da85..444a92dc7 100644
--- a/modules/printbackends/Makefile.am
+++ b/modules/printbackends/Makefile.am
@@ -1,7 +1,11 @@
-SUBDIRS = file lpr test
+SUBDIRS = file lpr
if HAVE_CUPS
SUBDIRS += cups
endif
-DIST_SUBDIRS=cups file lpr test
+if TEST_PRINT_BACKEND
+SUBDIRS += test
+endif
+
+DIST_SUBDIRS = cups file lpr test