diff options
author | jperkin <jperkin@pkgsrc.org> | 2018-02-07 15:35:09 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2018-02-07 15:35:09 +0000 |
commit | 89840a65a276da49fb5369901189b019ea433617 (patch) | |
tree | e63b5e6b7014d17decccdf8c78b25675a29102e3 /misc/attica-qt5 | |
parent | 3bf6d5dbdbc42614a6f68a1114044d9c7751bf90 (diff) | |
download | pkgsrc-89840a65a276da49fb5369901189b019ea433617.tar.gz |
kde: SUBST_STAGE should be pre-configure, not post-patch.
Performing substitutions during *-patch phases makes it impossible to
generate patches via mkpatches without introducing substitution noise.
Diffstat (limited to 'misc/attica-qt5')
-rw-r--r-- | misc/attica-qt5/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/attica-qt5/Makefile b/misc/attica-qt5/Makefile index 0a9294f44a4..964a1bb0d10 100644 --- a/misc/attica-qt5/Makefile +++ b/misc/attica-qt5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2018/01/30 07:52:36 markd Exp $ +# $NetBSD: Makefile,v 1.12 2018/02/07 15:35:09 jperkin Exp $ DISTNAME= attica-${KF5VER} PKGNAME= ${DISTNAME:S/-/-qt5-/} @@ -14,7 +14,7 @@ LICENSE= gnu-lgpl-v2.1 PKGCONFIG_OVERRIDE+= src/cmake/libKF5Attica.pc.cmake SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= post-patch +SUBST_STAGE.xdg= pre-configure SUBST_MESSAGE.xdg= Install via examples dir. SUBST_FILES.xdg= CMakeLists.txt SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_DATAROOTDIR}/examples/kde-xdg:' |