Mercurial > hg-stable
comparison doc/Makefile @ 7686:fa584d23e3cc
Do not install executable man pages
Default mode of install might be 755, therefore specify 644.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Sun, 25 Jan 2009 12:21:57 +0100 |
parents | ceed5f8c4ebf |
children | e0eb03bfa5af |
comparison
equal
deleted
inserted
replaced
7685:161412a3341c | 7686:fa584d23e3cc |
---|---|
1 SOURCES=$(wildcard *.[0-9].txt) | 1 SOURCES=$(wildcard *.[0-9].txt) |
2 MAN=$(SOURCES:%.txt=%) | 2 MAN=$(SOURCES:%.txt=%) |
3 HTML=$(SOURCES:%.txt=%.html) | 3 HTML=$(SOURCES:%.txt=%.html) |
4 PREFIX=/usr/local | 4 PREFIX=/usr/local |
5 MANDIR=$(PREFIX)/share/man | 5 MANDIR=$(PREFIX)/share/man |
6 INSTALL=install -c | 6 INSTALL=install -c -m 644 |
7 PYTHON=python | 7 PYTHON=python |
8 ASCIIDOC=asciidoc | 8 ASCIIDOC=asciidoc |
9 | 9 |
10 all: man html | 10 all: man html |
11 | 11 |