diff options
-rw-r--r-- | eclass/ELT-patches/portage/1.5.10 | 2 | ||||
-rw-r--r-- | eclass/ELT-patches/sed/1.5.6 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/eclass/ELT-patches/portage/1.5.10 b/eclass/ELT-patches/portage/1.5.10 index 24a7fd73b7d4..56a19c731a81 100644 --- a/eclass/ELT-patches/portage/1.5.10 +++ b/eclass/ELT-patches/portage/1.5.10 @@ -13,7 +13,7 @@ name should be bumped, but the patch content should stay fairly the same. exit 1 fi - newdependency_libs="$newdependency_libs $libdir/$name" -+ if [ "x$EGREP" = x ] ; then ++ if test "x$EGREP" = x ; then + EGREP=egrep + fi + # We do not want portage's install root ($D) present. Check only for diff --git a/eclass/ELT-patches/sed/1.5.6 b/eclass/ELT-patches/sed/1.5.6 index 0aa65c99fe96..5efd5310dcff 100644 --- a/eclass/ELT-patches/sed/1.5.6 +++ b/eclass/ELT-patches/sed/1.5.6 @@ -5,10 +5,10 @@ SED=sed fi +# Same for EGREP, and just to be sure, do LTCC as well -+if [ "x$EGREP" = x ] ; then ++if test "x$EGREP" = x ; then + EGREP=egrep +fi -+if [ "x$LTCC" = x ] ; then ++if test "x$LTCC" = x ; then + LTCC=${CC-gcc} +fi |