diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 87e1bea888d90a6044a18e46681bc456ea30305c (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /www/wml/Makefile | |
parent | 0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff) | |
download | pkgsrc-87e1bea888d90a6044a18e46681bc456ea30305c.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'www/wml/Makefile')
-rw-r--r-- | www/wml/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/wml/Makefile b/www/wml/Makefile index 6b4a5134ab3..59d72c08903 100644 --- a/www/wml/Makefile +++ b/www/wml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2005/12/05 23:55:23 rillig Exp $ +# $NetBSD: Makefile,v 1.26 2007/01/07 09:14:16 rillig Exp $ # DISTNAME= wml-2.0.9 @@ -44,12 +44,12 @@ pre-configure: done post-install: - cd ${PREFIX}/man/cat1 ; \ + cd ${PREFIX}/${PKGMANDIR}/cat1 ; \ for i in wml_aux_tidy wml_aux_txt2html wml_p4_gm4 ; \ do \ ${MV} $${i}.1 $${i}.0 ; \ done - cd ${PREFIX}/man/cat7 ; \ + cd ${PREFIX}/${PKGMANDIR}/cat7 ; \ for i in wml_barebone wml_std_css1 wml_std_css2 wml_std_csspos \ wml_std_html20 wml_std_html32 wml_std_html40 wml_std_html401 \ wml_std_wai10 wml_std_xhtml10 ; \ |