fence-virt/man/Makefile.in
Jan Pokorný 60e14071b7 Drop executable flag for man pages (finally)
Accidentally, 8cda792ac510fe3d62bfe29e71004b643ade9e7e did only a part
of it.

Reported-by: Lon Hohberger <lhh@redhat.com>
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
2012-12-04 22:37:20 +01:00

32 lines
982 B
Makefile

###############################################################################
###############################################################################
##
## Copyright (C) 2009 Red Hat, Inc.
##
## This copyrighted material is made available to anyone wishing to use,
## modify, copy, or redistribute it subject to the terms and conditions
## of the GNU General Public License v.2.
##
###############################################################################
###############################################################################
include ../Makefile.top
MAN8=fence_virt.8 fence_xvm.8 fence_virtd.8
MAN5=fence_virt.conf.5
all: $(MAN5) $(MAN8)
install: all
if [ ! -d ${DESTDIR}/${mandir}/man8 ]; then \
install -d ${DESTDIR}/${mandir}/man8 ; \
fi
install -m644 ${MAN8} ${DESTDIR}/${mandir}/man8
if [ ! -d ${DESTDIR}/${mandir}/man5 ]; then \
install -d ${DESTDIR}/${mandir}/man5 ; \
fi
install -m644 ${MAN5} ${DESTDIR}/${mandir}/man5
clean: