diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-03-01 00:56:24 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-03-01 00:56:24 +0000 |
commit | 013c549a86e285db85f7e275abac8e93413878af (patch) | |
tree | 6694938b64cc35417d029914f2e917ebbab8ddb0 /fonts | |
parent | d493c3d92d4d6295931bde6a07891df875671c7a (diff) | |
download | pkgsrc-013c549a86e285db85f7e275abac8e93413878af.tar.gz |
The NetBSD-current tar has problems with -C (see PR bin/24611)
Work around this problem by explicitly "cd" into the directory instead
of using the -C option.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/cyr-rfx-share/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fonts/cyr-rfx-share/Makefile.common b/fonts/cyr-rfx-share/Makefile.common index eab189ff2b0..b6d8eb2ac22 100644 --- a/fonts/cyr-rfx-share/Makefile.common +++ b/fonts/cyr-rfx-share/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2002/07/13 15:43:36 wiz Exp $ +# $NetBSD: Makefile.common,v 1.3 2004/03/01 00:56:24 kristerw Exp $ DISTNAME= cyr-rfx-${CYR_RFX_ENCODING}-1.1 CATEGORIES= fonts x11 @@ -19,6 +19,6 @@ NO_CONFIGURE= yes NO_BUILD= yes do-install: - @${GTAR} xzf ${_DISTDIR}/${DISTFILES} -C ${PREFIX}/lib/X11/fonts/local ${CYR_RFX_ENCODING}/misc ${CYR_RFX_ENCODING}/75dpi + @cd ${PREFIX}/lib/X11/fonts/local && ${GTAR} xzf ${_DISTDIR}/${DISTFILES} ${CYR_RFX_ENCODING}/misc ${CYR_RFX_ENCODING}/75dpi .include "../../mk/bsd.pkg.mk" |