diff options
author | Josef Bacik <josef@redhat.com> | 2010-02-09 17:24:23 +0100 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-02-09 17:24:41 +0100 |
commit | 270a7bdd9475e4b5a6512c9da72b5dfd82b36441 (patch) | |
tree | 0e7e229b95fb6ccf72e0c3c2fa3a3cb052ae37e0 /man | |
parent | osd: count objects degraded due to degraded pg (diff) | |
download | ceph-270a7bdd9475e4b5a6512c9da72b5dfd82b36441.tar.xz ceph-270a7bdd9475e4b5a6512c9da72b5dfd82b36441.zip |
ceph: fix manpages so they are only installed once
While creating a spec file for CEPH, rpmbuild was complaining because make
install was copying the manpages in, and then copying them in again. This is
because man_MANS and dist_man_MANS are supposed to be two seperate lists that do
not overlap. So make install would install all the man pages in the man_MANS
list and the dist_man_MANS list. This patch kills the dist_man_MANS thing to
keep this from happening. This made rpmbuild happy, which makes me happy :).
Thanks,
Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 56bc6e15d22..c7210235585 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = gnu -man_MANS = \ +dist_man_MANS = \ cosd.8 \ cmds.8 \ cmon.8 \ @@ -17,5 +17,3 @@ man_MANS = \ mount.ceph.8 \ radosgw.8 \ radosgw_admin.8 - -dist_man_MANS = $(man_MANS)
\ No newline at end of file |