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 | 10d101dba8f1ee69882c64f093bfe48bff074627 (patch) | |
tree | 23c5716ef9a06ffb567e6a1e3471447b73423f13 /eclass/ELT-patches | |
parent | stable on amd64 and x86 wrt #89277 (diff) | |
download | historical-10d101dba8f1ee69882c64f093bfe48bff074627.tar.gz historical-10d101dba8f1ee69882c64f093bfe48bff074627.tar.bz2 historical-10d101dba8f1ee69882c64f093bfe48bff074627.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` |