diff options
author | tv <tv@pkgsrc.org> | 2004-10-11 23:27:18 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-10-11 23:27:18 +0000 |
commit | d769d069b3edb6680f36ace389b062c1e41e280a (patch) | |
tree | e79febd0d1f3f377b4200ba318bc3f7ea716a9ad /mk/bsd.pkg.mk | |
parent | ed6eb4e8c9d2379a4a68fbec1c1522402c3daedf (diff) | |
download | pkgsrc-d769d069b3edb6680f36ace389b062c1e41e280a.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/bsd.pkg.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) |