diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-03-11 14:06:03 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-03-16 14:53:05 +0000 |
commit | b7f2a6c0a77b20664802b0ac8e724f4450bd5cff (patch) | |
tree | d64360c3a75df96db0cf2325ddfed6354e75af3e /winsup/doc/Makefile.in | |
parent | e9e47b8ce6158d7d0486abf6c1ff4e2dd790a084 (diff) | |
download | newlib-b7f2a6c0a77b20664802b0ac8e724f4450bd5cff.zip newlib-b7f2a6c0a77b20664802b0ac8e724f4450bd5cff.tar.gz newlib-b7f2a6c0a77b20664802b0ac8e724f4450bd5cff.tar.bz2 |
Fix winsup/doc to install into prefix
By default, docdir and htmldir are defined in terms of prefix, so make sure to
define it, so their values are prefix-relative.
Without this, 'make install' installs the documentation into /share/doc/ unless
configured otherwise.
* Makefile.in (prefix): Define.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'winsup/doc/Makefile.in')
-rw-r--r-- | winsup/doc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/doc/Makefile.in b/winsup/doc/Makefile.in index b7a8dbd..8bf86f7 100644 --- a/winsup/doc/Makefile.in +++ b/winsup/doc/Makefile.in @@ -12,6 +12,7 @@ SHELL = @SHELL@ srcdir = @srcdir@ VPATH = @srcdir@ +prefix:=@prefix@ datarootdir:=@datarootdir@ docdir = @docdir@ htmldir = @htmldir@ |