Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f27e3fb4 authored by Ying Wang's avatar Ying Wang Committed by Android Git Automerger
Browse files

am c35cc93d: Merge "Allow symlinks to device or vendor tree in envsetup.sh."

* commit 'c35cc93d':
  Allow symlinks to device or vendor tree in envsetup.sh.
parents 8a749606 c35cc93d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1459,8 +1459,8 @@ if [ "x$SHELL" != "x/bin/bash" ]; then
fi

# 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` \
         `test -d vendor && find vendor -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 -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
do
    echo "including $f"
    . $f