forked from openkylin/platform_build
envsetup: Show error when supplied dir isn't present with mmm
When a directory isn't present with mmm, don't show "No Android.mk present", rather show that the directory isn't present Change-Id: I7259a60012c6f30c470daa60d5a5097d01ffc4c7 Signed-off-by: Abhinav1997 <abhinav.jhanwar.august2@gmail.com>
This commit is contained in:
parent
4f6f0f924e
commit
a72a6e7c72
|
@ -754,7 +754,12 @@ function mmm()
|
||||||
case $DIR in
|
case $DIR in
|
||||||
showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
|
showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
|
||||||
GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
|
GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
|
||||||
*) echo "No Android.mk in $DIR."; return 1;;
|
*) if [ -d $DIR ]; then
|
||||||
|
echo "No Android.mk in $DIR.";
|
||||||
|
else
|
||||||
|
echo "Couldn't locate the directory $DIR";
|
||||||
|
fi
|
||||||
|
return 1;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue