diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-08-24 16:31:36 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-08-24 16:31:36 +0000 |
commit | f7848a579c083d37d7bf476409ef614127b904b6 (patch) | |
tree | 87bc2c12bb52eb02b710103f4812685279dc6a4f /graphics/freetype2 | |
parent | e0df1f94feba13b6e2cdc1ced84e6e8fa1506720 (diff) | |
download | pkgsrc-f7848a579c083d37d7bf476409ef614127b904b6.tar.gz |
On IRIX, we need to create a .libs directory, so that the linker doesn't
fail. This makes this package compile and install cleanly under Irix.
From PR pkg/22570 by Bas van Oostveen. Thanks!
Diffstat (limited to 'graphics/freetype2')
-rw-r--r-- | graphics/freetype2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/freetype2/Makefile b/graphics/freetype2/Makefile index d78864ba64c..f50dbce7886 100644 --- a/graphics/freetype2/Makefile +++ b/graphics/freetype2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2003/07/21 16:51:40 martti Exp $ +# $NetBSD: Makefile,v 1.20 2003/08/24 16:31:36 jschauma Exp $ # DISTNAME= freetype-2.1.4 @@ -27,8 +27,13 @@ CONFIGURE_ENV+= RPATH_FLAG="${RPATH_FLAG}" USE_LIBTOOL= YES LIBTOOL_OVERRIDE= ${WRKSRC}/builds/unix/libtool +.include "../../mk/bsd.prefs.mk" + post-configure: cd ${WRKSRC} && ${LN} -s builds/unix/unix.mk config.mk +.if ${OPSYS} == "IRIX" + ${MKDIR} ${WRKSRC}/.libs +.endif .include "../../devel/zlib/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |