diff options
author | tv <tv> | 2004-10-11 23:27:18 +0000 |
---|---|---|
committer | tv <tv> | 2004-10-11 23:27:18 +0000 |
commit | cb54a300b691a5df55420cc0245997cad7b2385b (patch) | |
tree | e79febd0d1f3f377b4200ba318bc3f7ea716a9ad /mk | |
parent | 26e1ca600a98799a8c03e36b6e630199073d7fed (diff) | |
download | pkgsrc-cb54a300b691a5df55420cc0245997cad7b2385b.tar.gz |
A couple packages overflow Interix's sed in an autoconfitized configure
script. Since all platforms define a "reasonable" sed(1), it seems
reasonable to pass this info to ./configure as well.
While here, convert LIBS="${LIBS}" to the proper LIBS=${LIBS:Q}.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index bdadf726393..30b46663345 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1511 2004/10/09 03:47:13 tv Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1512 2004/10/11 23:27:18 tv Exp $ # # This file is in the public domain. # @@ -381,10 +381,11 @@ CPPFLAGS+= ${CPP_PRECOMP_FLAGS} # If GNU_CONFIGURE is defined, then pass LIBS to the GNU configure script. # also pass in a CONFIG_SHELL to avoid picking up bash .if defined(GNU_CONFIGURE) -CONFIGURE_ENV+= LIBS="${LIBS}" CONFIG_SHELL?= ${SH} CONFIGURE_ENV+= CONFIG_SHELL=${CONFIG_SHELL} +CONFIGURE_ENV+= LIBS=${LIBS:Q} CONFIGURE_ENV+= install_sh=${INSTALL:Q} +CONFIGURE_ENV+= SED=${SED:Q} .endif .if defined(_OPSYS_LIBTOOL_REQD) |