diff options
author | Dominic Hopf <dmaphy@googlemail.com> | 2014-07-03 20:42:48 +0200 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2014-07-08 09:42:05 +0100 |
commit | 71e094772b7bfb87a67c1446c4447270c4d69bad (patch) | |
tree | 9eb8370643498c03334b5747e129873b760d6621 | |
parent | f6b322979b785a9711a17dcc2170228f8a756c6d (diff) | |
download | zsh-71e094772b7bfb87a67c1446c4447270c4d69bad.tar.gz zsh-71e094772b7bfb87a67c1446c4447270c4d69bad.tar.xz zsh-71e094772b7bfb87a67c1446c4447270c4d69bad.zip |
32837: improved installation location support for help directories
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Config/defs.mk.in | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index fbc016d0b..a2f0e20cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-07-08 Peter Stephenson <p.stephenson@samsung.com> + * Dominic Hopf: 32837: Config/defs.mk.in: improve handling of + installation location for help directories. + * 32832: Doc/Zsh/grammar.yo Doc/Zsh/params.yo: attempt to improve documentation for how assignment works. diff --git a/Config/defs.mk.in b/Config/defs.mk.in index 2c813a3b2..f6ea5c1cd 100644 --- a/Config/defs.mk.in +++ b/Config/defs.mk.in @@ -95,7 +95,7 @@ additionalfpath = @additionalfpath@ MAKEDEFS = \ prefix='$(prefix)' exec_prefix='$(exec_prefix)' bindir='$(bindir)' \ libdir='$(libdir)' MODDIR='$(MODDIR)' infodir='$(infodir)' mandir='$(mandir)' \ -datadir='$(datadir)' fndir='$(fndir)' htmldir='$(htmldir)' \ +datadir='$(datadir)' fndir='$(fndir)' htmldir='$(htmldir)' runhelpdir='$(runhelpdir)' \ CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' DEFS='$(DEFS)' CFLAGS='$(CFLAGS)' \ LDFLAGS='$(LDFLAGS)' EXTRA_LDFLAGS='$(EXTRA_LDFLAGS)' \ DLCFLAGS='$(DLCFLAGS)' DLLDFLAGS='$(DLLDFLAGS)' \ |