diff options
author | ryoon <ryoon@pkgsrc.org> | 2016-03-02 22:45:01 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2016-03-02 22:45:01 +0000 |
commit | a0dc1973069439d92a559ee54342fc89d973f561 (patch) | |
tree | 06f221f9c21fa49ed1156a682b272d5a76ea6e8b /devel | |
parent | 6a236ec11a3bf6bd31262b8fb254932f6fbff87c (diff) | |
download | pkgsrc-a0dc1973069439d92a559ee54342fc89d973f561.tar.gz |
Replace more hardcoded /etc. Bump PKGREVISION
This fixes error from inputmethod/ibus-skk's ibus-setup-skk.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dconf/Makefile | 4 | ||||
-rw-r--r-- | devel/dconf/Makefile.common | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/devel/dconf/Makefile b/devel/dconf/Makefile index dd47196778c..9528ef55bf3 100644 --- a/devel/dconf/Makefile +++ b/devel/dconf/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2016/03/02 13:32:06 ryoon Exp $ +# $NetBSD: Makefile,v 1.31 2016/03/02 22:45:01 ryoon Exp $ -PKGREVISION= 3 +PKGREVISION= 4 .include "Makefile.common" CONFIGURE_ARGS+= --disable-editor diff --git a/devel/dconf/Makefile.common b/devel/dconf/Makefile.common index 9b251debb45..4e4ed64500f 100644 --- a/devel/dconf/Makefile.common +++ b/devel/dconf/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2014/11/10 23:23:17 prlw1 Exp $ +# $NetBSD: Makefile.common,v 1.8 2016/03/02 22:45:01 ryoon Exp $ # # used by devel/dconf-editor/Makefile @@ -20,8 +20,9 @@ USE_TOOLS+= pkg-config gmake intltool msgfmt SUBST_CLASSES+= sysdir SUBST_MESSAGE.sysdir= Fixes hard-coded dconf database directory name SUBST_STAGE.sysdir= post-configure -SUBST_FILES.sysdir= engine/dconf-engine-source-system.c +SUBST_FILES.sysdir+= engine/dconf-engine-source-system.c +SUBST_FILES.sysdir+= engine/dconf-engine-profile.c SUBST_FILES.sysdir+= tests/engine.c SUBST_FILES.sysdir+= bin/dconf-update.c SUBST_FILES.sysdir+= bin/dconf-update.vala -SUBST_SED.sysdir= -e s,/etc/dconf,${PKG_SYSCONFDIR}/dconf,g +SUBST_SED.sysdir= -e s,/etc,${PKG_SYSCONFDIR},g |