]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph: fix manpages so they are only installed once
authorJosef Bacik <josef@redhat.com>
Tue, 9 Feb 2010 16:24:23 +0000 (08:24 -0800)
committerSage Weil <sage@newdream.net>
Tue, 9 Feb 2010 16:24:41 +0000 (08:24 -0800)
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>
man/Makefile.am

index 56bc6e15d22279a7149881a8de12a66b67a03fe4..c72102355853e476dc79938be8fa75ff1a79b496 100644 (file)
@@ -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