diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-16 17:45:49 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-16 17:45:49 +0000 |
commit | eb011fb0ee02eae2746783e19726a5a7d71fffca (patch) | |
tree | 7a87fcfe1ba67fd43dbd4b88575c8308e7126494 /sysutils/salt | |
parent | 350db8fe9d61b2c3c29b45ec21b777c9e3b98697 (diff) | |
download | pkgsrc-eb011fb0ee02eae2746783e19726a5a7d71fffca.tar.gz |
sysutils/salt: allow no-op SUBST block
A typical case is that PKGMANDIR is man, not share/man. That path does
not occur in the Python files, which would then make the build fail in
SUBST_NOOP_OK=no mode.
Diffstat (limited to 'sysutils/salt')
-rw-r--r-- | sysutils/salt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/salt/Makefile b/sysutils/salt/Makefile index 2313d6eab16..feb441273d0 100644 --- a/sysutils/salt/Makefile +++ b/sysutils/salt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2019/11/13 14:47:59 adam Exp $ +# $NetBSD: Makefile,v 1.72 2020/05/16 17:45:49 rillig Exp $ DISTNAME= salt-2019.2.2 CATEGORIES= sysutils @@ -74,6 +74,7 @@ SUBST_SED.fix-path+= -e 's,/opt/local/etc,${PKG_SYSCONFBASEDIR},g' SUBST_SED.fix-path+= -e 's,/var/run,${VARBASE}/run,g' SUBST_SED.fix-path+= -e 's,/var/cache,${VARBASE}/cache,g' SUBST_SED.fix-path+= -e 's,/var/log,${VARBASE}/log,g' +SUBST_NOOP_OK.fix-path= yes # Contains hardcoded paths to find installed libraries. CHECK_WRKREF_SKIP+= */salt/utils/rsax931.py |