Loading envsetup.sh +2 −2 Original line number Original line Diff line number Diff line Loading @@ -1465,8 +1465,8 @@ if [ "x$SHELL" != "x/bin/bash" ]; then fi fi # Execute the contents of any vendorsetup.sh files we can find. # Execute the contents of any vendorsetup.sh files we can find. for f in `test -d device && find device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \ for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \ `test -d vendor && find vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` do do echo "including $f" echo "including $f" . $f . $f Loading Loading
envsetup.sh +2 −2 Original line number Original line Diff line number Diff line Loading @@ -1465,8 +1465,8 @@ if [ "x$SHELL" != "x/bin/bash" ]; then fi fi # Execute the contents of any vendorsetup.sh files we can find. # Execute the contents of any vendorsetup.sh files we can find. for f in `test -d device && find device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \ for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \ `test -d vendor && find vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` do do echo "including $f" echo "including $f" . $f . $f Loading