diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:47:55 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:47:55 +0000 |
commit | 45524a42f0b5a6d6293940e6ff6da9373a963426 (patch) | |
tree | 2e373ef4de29643ccffbd186d302b5ffacd850cd /audio/gimmix/Makefile | |
parent | 611b1b51074b40e0878490964f2e74e120363edf (diff) | |
download | pkgsrc-45524a42f0b5a6d6293940e6ff6da9373a963426.tar.gz |
Remove mk/find-prefix.mk usage from the audio category.
The find-prefix infrastructure was required in a pkgviews world where
packages installed from pkgsrc could have different installation
prefixes, and this was a way for a dependency prefix to be determined.
Now that pkgviews has been removed there is no longer any need for the
overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg
for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the
dependency is coming from pkgsrc.
Provides a reasonable performance win due to the reduction of `pkg_info
-qp` calls, some of which were redundant anyway as they were duplicating
the same information provided by BUILDLINK_PREFIX.pkg.
Diffstat (limited to 'audio/gimmix/Makefile')
-rw-r--r-- | audio/gimmix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/gimmix/Makefile b/audio/gimmix/Makefile index b6c5c0850e8..d212b9e1c37 100644 --- a/audio/gimmix/Makefile +++ b/audio/gimmix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2015/04/25 14:20:20 tnn Exp $ +# $NetBSD: Makefile,v 1.38 2015/11/25 12:47:55 jperkin Exp $ # DISTNAME= gimmix-0.5.7.1 @@ -20,7 +20,7 @@ USE_TOOLS+= intltool gmake msgfmt pkg-config # fixes broken symbolic link to /usr/share/intltool/Makefile.in.in post-extract: rm -f ${WRKSRC}/po/Makefile.in.in - ln -s ${TOOLS_PREFIX.intltool:Q}/share/intltool/Makefile.in.in \ + ln -s ${LOCALBASE}/share/intltool/Makefile.in.in \ ${WRKSRC}/po/Makefile.in.in .include "../../x11/gtk2/buildlink3.mk" |