diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-09 06:08:02 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-09 06:08:02 +0000 |
commit | e19e2750ffac5aefd1d4e5b439e2fb74a37357d9 (patch) | |
tree | 64fe0cb102d7da52694e852183c9171a73009fc9 /devel | |
parent | 42ba33085a825724be074e8464254a1effd52093 (diff) | |
download | pkgsrc-e19e2750ffac5aefd1d4e5b439e2fb74a37357d9.tar.gz |
Always use ${SED} instead of having the configure script try to figure out
the path to it.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool-base/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 1c39ac3aeca..7b24e6058d8 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2004/02/09 01:04:45 jlam Exp $ +# $NetBSD: Makefile,v 1.25 2004/02/09 06:08:02 jlam Exp $ # PKGNAME= ${DISTNAME:C/-/-base-/} @@ -33,11 +33,17 @@ BUILD_SHLIBTOOL= NO CONFIGURE_ARGS= --enable-ltdl-install .endif -# libtool persists in trying to find the path to ld, which always ends -# up in ${BUILDLINK_DIR}. Prevent it from caring. +# The configure script persists in trying to find the path to ld, which +# always ends up in ${BUILDLINK_DIR}. Prevent it from caring. # CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q} +# The configure script persists in trying to find the path to sed or gsed, +# which breaks when SED is nbsed. Tell it explicitly to use the sed +# named by ${SED}. +# +CONFIGURE_ENV+= lt_cv_path_SED=${SED:Q} + .if !empty(MACHINE_PLATFORM:MDarwin-*-*) . include "../../devel/dlcompat/buildlink3.mk" .endif |