diff options
author | tnn <tnn@pkgsrc.org> | 2022-01-09 23:42:02 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2022-01-09 23:42:02 +0000 |
commit | 8ed0f32c149c5017ff1de8dd94f366dc36a0fb45 (patch) | |
tree | 0613e459e5e51f68286bd3a6f4714eaf01f4d81e /inputmethod | |
parent | ccad14e960fc3cc88e00f311403cbc5d0b6167e4 (diff) | |
download | pkgsrc-8ed0f32c149c5017ff1de8dd94f366dc36a0fb45.tar.gz |
Fix packages that use GITSUB_MODULES on SunOS and possibly others
This is annoying, but for now we must always explicitly combine
GITHUB_SUBMODULES with EXTRACT_USING+=bsdtar.
This is because mk/fetch/github.mk uses OPTS_TAR=--strip-components=1
and that is not supported by nbtar(pax), which is the default pkgsrc
tar on some platforms. We cannot override EXTRACT_USING in github.mk
because that is too late.
We should switch all platforms to bsdtar and retire pax.
Diffstat (limited to 'inputmethod')
-rw-r--r-- | inputmethod/uim/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inputmethod/uim/Makefile.common b/inputmethod/uim/Makefile.common index 0d7a4417472..182c152af74 100644 --- a/inputmethod/uim/Makefile.common +++ b/inputmethod/uim/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.17 2021/03/30 17:01:49 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.18 2022/01/09 23:42:02 tnn Exp $ # # used by inputmethod/uim/Makefile # used by inputmethod/uim-elisp/Makefile @@ -13,6 +13,7 @@ HOMEPAGE= https://github.com/uim/uim/wiki GITHUB_SUBMODULES+= uim sigscheme beb8fbdc69b523d14fc202a4d17375555a74c772 sigscheme GITHUB_SUBMODULES+= uim libgcroots d362356cc4c5f591695d2fbda7746918250c9e99 sigscheme/libgcroots +EXTRACT_USING= bsdtar DISTINFO_FILE= ${.CURDIR}/../../inputmethod/uim/distinfo PATCHDIR= ${.CURDIR}/../../inputmethod/uim/patches |