Gitweb: http://git.fedorahosted.org/git/?p=fence-agents.git;a=commitdiff;h=542786783... Commit: 54278678366ab2be264d634fe17a305236200188 Parent: 64a3c22205f7ee8cd1eb8dcc7ab9aafe1c8e9ee6 Author: Fabio M. Di Nitto fdinitto@redhat.com AuthorDate: Mon Jun 4 15:43:15 2012 +0200 Committer: Marek 'marx' Grac mgrac@redhat.com CommitterDate: Thu Oct 4 10:47:00 2012 +0200
build: fix dist_man_* vs man_*
those man pages should be generated at build time and not part of the release tarball
Signed-off-by: Fabio M. Di Nitto fdinitto@redhat.com --- fence/agents/baytech/Makefile.am | 2 +- fence/agents/brocade/Makefile.am | 2 +- fence/agents/bullpap/Makefile.am | 2 +- fence/agents/cpint/Makefile.am | 2 +- fence/agents/drac/Makefile.am | 2 +- fence/agents/egenera/Makefile.am | 2 +- fence/agents/ipmilan/Makefile.am | 2 +- fence/agents/mcdata/Makefile.am | 2 +- fence/agents/rackswitch/Makefile.am | 4 ++-- fence/agents/vixel/Makefile.am | 2 +- fence/agents/xcat/Makefile.am | 2 +- fence/agents/zvm/Makefile.am | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/fence/agents/baytech/Makefile.am b/fence/agents/baytech/Makefile.am index 5288efa..c0b0b84 100644 --- a/fence/agents/baytech/Makefile.am +++ b/fence/agents/baytech/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/brocade/Makefile.am b/fence/agents/brocade/Makefile.am index ed3394d..3338804 100644 --- a/fence/agents/brocade/Makefile.am +++ b/fence/agents/brocade/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/bullpap/Makefile.am b/fence/agents/bullpap/Makefile.am index b454007..a602b5e 100644 --- a/fence/agents/bullpap/Makefile.am +++ b/fence/agents/bullpap/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/cpint/Makefile.am b/fence/agents/cpint/Makefile.am index e9fee26..c9680bd 100644 --- a/fence/agents/cpint/Makefile.am +++ b/fence/agents/cpint/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/drac/Makefile.am b/fence/agents/drac/Makefile.am index c9cdeda..392415f 100644 --- a/fence/agents/drac/Makefile.am +++ b/fence/agents/drac/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/egenera/Makefile.am b/fence/agents/egenera/Makefile.am index 6cd82a6..c69f805 100644 --- a/fence/agents/egenera/Makefile.am +++ b/fence/agents/egenera/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/ipmilan/Makefile.am b/fence/agents/ipmilan/Makefile.am index f237f92..17ac8f2 100644 --- a/fence/agents/ipmilan/Makefile.am +++ b/fence/agents/ipmilan/Makefile.am @@ -8,7 +8,7 @@ noinst_HEADERS = expect.h
fence_ipmilan_SOURCES = expect.c ipmilan.c
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencemanc.mk
diff --git a/fence/agents/mcdata/Makefile.am b/fence/agents/mcdata/Makefile.am index f1a5939..54b64fc 100644 --- a/fence/agents/mcdata/Makefile.am +++ b/fence/agents/mcdata/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/rackswitch/Makefile.am b/fence/agents/rackswitch/Makefile.am index d2c9e1f..8c435c0 100644 --- a/fence/agents/rackswitch/Makefile.am +++ b/fence/agents/rackswitch/Makefile.am @@ -8,9 +8,9 @@ noinst_HEADERS = do_rack.h
fence_rackswitch_SOURCES = do_rack.c
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencemanc.mk
clean-local: clean-man - rm -f $(TARGET) \ No newline at end of file + rm -f $(TARGET) diff --git a/fence/agents/vixel/Makefile.am b/fence/agents/vixel/Makefile.am index 64d6010..3159e50 100644 --- a/fence/agents/vixel/Makefile.am +++ b/fence/agents/vixel/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/xcat/Makefile.am b/fence/agents/xcat/Makefile.am index 27c289c..ef99def 100644 --- a/fence/agents/xcat/Makefile.am +++ b/fence/agents/xcat/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk diff --git a/fence/agents/zvm/Makefile.am b/fence/agents/zvm/Makefile.am index 3ce3d82..2358d90 100644 --- a/fence/agents/zvm/Makefile.am +++ b/fence/agents/zvm/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(SRC)
sbin_SCRIPTS = $(TARGET)
-dist_man_MANS = $(TARGET).8 +man_MANS = $(TARGET).8
include $(top_srcdir)/make/fencebuild.mk include $(top_srcdir)/make/fencemanperl.mk
cluster-commits@lists.stg.fedorahosted.org