pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/tools Work around brokenness in GNU configure scrip...
details: https://anonhg.NetBSD.org/pkgsrc/rev/fb8fcea4f9a4
branches: trunk
changeset: 494386:fb8fcea4f9a4
user: jlam <jlam%pkgsrc.org@localhost>
date: Mon May 23 17:07:22 2005 +0000
description:
Work around brokenness in GNU configure scripts generated by autoconf-2.59a
-- the checks for grep and egrep are broken because when passed GREP
and EGREP in the environment, the script causes GREP and EGREP to be
set to empty strings, which causes GNU configure scripts to hang or
break. Pass the real paths to grep and egrep through using ac_cv_path_GREP
and ac_cv_path_EGREP as well to avoid the brokenness. This fixes the
build of textproc/gsed.
diffstat:
mk/tools/defaults.mk | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r 8aedca247a1c -r fb8fcea4f9a4 mk/tools/defaults.mk
--- a/mk/tools/defaults.mk Mon May 23 16:29:10 2005 +0000
+++ b/mk/tools/defaults.mk Mon May 23 17:07:22 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: defaults.mk,v 1.21 2005/05/22 20:58:27 jlam Exp $
+# $NetBSD: defaults.mk,v 1.22 2005/05/23 17:07:22 jlam Exp $
#
# Copyright (c) 2005 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -136,11 +136,11 @@
_TOOLS_VARNAME_GNU.cmp= CMP
_TOOLS_VARNAME_GNU.cp= CP
_TOOLS_VARNAME_GNU.echo= ECHO
-_TOOLS_VARNAME_GNU.egrep= EGREP
+_TOOLS_VARNAME_GNU.egrep= EGREP ac_cv_path_EGREP
_TOOLS_VARNAME_GNU.env= SETENV
_TOOLS_VARNAME_GNU.gawk= AWK
_TOOLS_VARNAME_GNU.gm4= M4
-_TOOLS_VARNAME_GNU.grep= GREP
+_TOOLS_VARNAME_GNU.grep= GREP ac_cv_path_GREP
_TOOLS_VARNAME_GNU.gsed= SED
_TOOLS_VARNAME_GNU.gtar= TAR
_TOOLS_VARNAME_GNU.hostname= HOSTNAME
Home |
Main Index |
Thread Index |
Old Index