diff options
author | reed <reed@pkgsrc.org> | 2005-10-05 00:31:23 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-10-05 00:31:23 +0000 |
commit | 3b5c46b4362174c2776181bb1e62ae73457e8a75 (patch) | |
tree | f5f96b168a86460e69a953a4c9998e3255b8cb9a /meta-pkgs/xorg | |
parent | 210cf63240d171bd5974cb7619b749446735b0c9 (diff) | |
download | pkgsrc-3b5c46b4362174c2776181bb1e62ae73457e8a75.tar.gz |
Define FileManSuffix and FileManDir (just like already done
for MiscMan, DriverMan). This is to fix ongoing problem
where I find manpages installed to 5x instead of 5 and PLIST is
wrong so won't package. (I saw this on Linux and I tested this
on Linux and NetBSD.)
Diffstat (limited to 'meta-pkgs/xorg')
-rw-r--r-- | meta-pkgs/xorg/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-pkgs/xorg/Makefile.common b/meta-pkgs/xorg/Makefile.common index 4cad1485b69..c4ca34e9bf0 100644 --- a/meta-pkgs/xorg/Makefile.common +++ b/meta-pkgs/xorg/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.34 2005/10/05 00:26:50 reed Exp $ +# $NetBSD: Makefile.common,v 1.35 2005/10/05 00:31:23 reed Exp $ # # XBUILD_DIRS is the group of directories under ${WRKSRC} that will # be built in. @@ -253,8 +253,10 @@ post-extract: -e "s|@EGDIR@|${EGDIR}|g" \ -e "s|@KERNMAN_SUFFIX@|${KERNMAN_SUFFIX}|g" \ -e "s|@MISCMAN_SUFFIX@|${MISCMAN_SUFFIX}|g" \ + -e "s|@FILEMAN_SUFFIX@|${FILEMAN_SUFFIX}|g" \ -e "s|@KERNMAN_DIR@|${KERNMAN_DIR}|g" \ -e "s|@MISCMAN_DIR@|${MISCMAN_DIR}|g" \ + -e "s|@FILEMAN_DIR@|${FILEMAN_DIR}|g" \ -e "s|@CARDDRIVERS@|${CARDDRIVERS}|g" \ ${FILESDIR}/host.def > ${WRKSRC}/config/cf/host.def @${LN} -sf ${X11ROOT}/bin/gccmakedep ${WRKSRC}/config/util |