Gitweb: http://git.fedorahosted.org/git/?p=gfs2-utils.git;a=commitdiff;h=3b748462ec9... Commit: 3b748462ec98cb5909b3ad9f3b639dbca38142fd Parent: 69b7a79e053aecaf7218134b8536bc0d7332a17e Author: Andrew Price anprice@redhat.com AuthorDate: Wed Jul 4 12:30:15 2012 +0100 Committer: Andrew Price anprice@redhat.com CommitterDate: Wed Jul 4 12:30:15 2012 +0100
gfs2-utils: Only build group/ when gfs_controld is enabled
The previous commit only disabled gfs_controld from building when --enable-gfs_controld was omitted. When we're not building gfs_controld there really is no reason to build anything else in the group/ directory so this patch disables it by default.
Signed-off-by: Andrew Price anprice@redhat.com --- Makefile.am | 6 +++++- group/Makefile.am | 6 +----- 2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Makefile.am b/Makefile.am index 2e5d9ae..0af3e04 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,7 +12,11 @@ noinst_HEADERS = make/copyright.cf
ACLOCAL_AMFLAGS = -I m4
-SUBDIRS = po group gfs2 doc +if BUILD_GFS_CONTROLD +DIR_GROUP = group +endif + +SUBDIRS = po $(DIR_GROUP) gfs2 doc
install-exec-local: $(INSTALL) -d $(DESTDIR)/$(LOGDIR) diff --git a/group/Makefile.am b/group/Makefile.am index 2904ce1..5b7d0f8 100644 --- a/group/Makefile.am +++ b/group/Makefile.am @@ -1,7 +1,3 @@ MAINTAINERCLEANFILES = Makefile.in
-if BUILD_GFS_CONTROLD -DIR_GFS_CONTROLD = gfs_controld -endif - -SUBDIRS = libgfscontrol gfs_control $(DIR_GFS_CONTROLD) man include +SUBDIRS = libgfscontrol gfs_control gfs_controld man include
cluster-commits@lists.stg.fedorahosted.org