From 1cae1738383fd2a0f74674fc7b119e7fd41086d5 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Fri, 6 Nov 2009 20:18:59 +0100 Subject: [PATCH] Fixed Makefile.am to work when libgladeui-dev isn't installed. --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index cee40e7..4729614 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,10 @@ ACLOCAL_AMFLAGS = -I m4 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc -SUBDIRS = src tests docs glade +SUBDIRS = src tests docs +if test "$(GLADEUI_FOUND)" = "yes"; then \ + SUBDIRS = $(SUBDIRS) glade; \ +fi EXTRA_DIST = libgtkmaskedentry.pc.in -- 2.49.0