diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-04-16 17:16:27 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-04-16 17:16:27 +0000 |
commit | b95d07045390984c0170760a9f9824650dace632 (patch) | |
tree | e178d32aedd7f8a02ee73b25c4c8ff473f14ad7c /eclass/ELT-patches | |
parent | stable on amd64 and x86 wrt #89277 (diff) | |
download | gentoo-2-b95d07045390984c0170760a9f9824650dace632.tar.gz gentoo-2-b95d07045390984c0170760a9f9824650dace632.tar.bz2 gentoo-2-b95d07045390984c0170760a9f9824650dace632.zip |
Add sed fix for 1.5.6.
Diffstat (limited to 'eclass/ELT-patches')
-rw-r--r-- | eclass/ELT-patches/sed/1.5.6 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/eclass/ELT-patches/sed/1.5.6 b/eclass/ELT-patches/sed/1.5.6 new file mode 100644 index 000000000000..0aa65c99fe96 --- /dev/null +++ b/eclass/ELT-patches/sed/1.5.6 @@ -0,0 +1,16 @@ +--- ltmain.sh 2005-04-16 16:50:02.000000000 +0200 ++++ ltmain.sh 2005-04-16 16:46:46.000000000 +0200 +@@ -39,6 +39,13 @@ + if [ "x$SED" = x ] ; then + SED=sed + fi ++# Same for EGREP, and just to be sure, do LTCC as well ++if [ "x$EGREP" = x ] ; then ++ EGREP=egrep ++fi ++if [ "x$LTCC" = x ] ; then ++ LTCC=${CC-gcc} ++fi + + # The name of this program: + progname=`echo "$progpath" | $SED $basename` |