freeipa/ipa-admintools/man/Makefile
Karl MacMillan 957a70e560 Prevent gzip from requesting confirmation.
The current manpage installation gzips the files in
place and requests confirmation before overwriting
existing files. Add -f to prevent prompting. We
should consider not gzipping the files in place.
0001-01-01 00:00:00 +00:00

23 lines
358 B
Makefile

MANDIR = $(DESTDIR)/usr/share/man
MANFILES=\
ipa-addgroup.1 \
ipa-adduser.1 \
ipa-delgroup.1 \
ipa-deluser.1 \
ipa-findgroup.1 \
ipa-finduser.1 \
ipa-groupmod.1 \
ipa-passwd.1 \
ipa-usermod.1
all: ;
install:
mkdir -p $(MANDIR)/man1
@for i in $(MANFILES) ; do install -m 644 $$i $(MANDIR)/man1 ; gzip -f $(MANDIR)/man1/$$i ; done
clean:
test: