diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /www/wml | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.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')
-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 ; \ |