diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-10 17:23:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-10 17:23:14 +0000 |
commit | 46dd9c9163a4f4ef3ac8c6d44c73e77ef2862819 (patch) | |
tree | 4319ce8e085650c30fda7841e55f766a3cc01cab /textproc/yodl | |
parent | d6f119448c46044303bac8901efe788042e08d18 (diff) | |
download | pkgsrc-46dd9c9163a4f4ef3ac8c6d44c73e77ef2862819.tar.gz |
Pass LDFLAGS down to configure twice: once using the normal LDFLAGS
done automatically, once as ILDFLAGS, which ends up to be actually
used. This fixes rpath linkage on DragonFly.
Diffstat (limited to 'textproc/yodl')
-rw-r--r-- | textproc/yodl/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/textproc/yodl/Makefile b/textproc/yodl/Makefile index d0c43bb10d5..afbe7849f4d 100644 --- a/textproc/yodl/Makefile +++ b/textproc/yodl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/05/22 20:08:43 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2006/01/10 17:23:14 joerg Exp $ DISTNAME= yodl-1.31.18 PKGREVISION= 3 @@ -14,9 +14,7 @@ BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison GNU_CONFIGURE= YES USE_TOOLS+= gmake MAKEFILE= GNUmakefile - -do-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} LDFLAGS="${LDFLAGS}" +CONFIGURE_ENV+= ILDFLAGS=${LDFLAGS:Q} .include "../../lang/python/application.mk" .include "../../devel/gettext-lib/buildlink3.mk" |