1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:07:46 +02:00

Merge pull request #278 from Ansa89/trivial-fix

Fix Tox/toxic#276
This commit is contained in:
mannol 2014-10-30 15:41:17 +01:00
commit 5a0d9f5e9f

View File

@ -23,7 +23,7 @@ install: toxic
@echo "Installing man pages"
@mkdir -p $(abspath $(DESTDIR)/$(MANDIR))
@for f in $(MANFILES) ; do \
if [ ! -e "$$f" ]; then \
if [ ! -e "$(DOC_DIR)/$$f" ]; then \
continue ;\
fi ;\
section=$(abspath $(DESTDIR)/$(MANDIR))/man`echo $$f | rev | cut -d "." -f 1` ;\