I am trying to build Android from within shadow copy symlinked to the actual source code using lndir. The purpose of this is, I need to build Android for multiple targets from the same source code and would like to keep the source intact (so instead of having to clean and build all over again when changing targets, I can have one shadow copy build for each target). When I try to build from the shadow copy, I get:
Checking build tools versions...
build/core/main.mk:292: implicitly installing apns-conf_sdk.xml
build/core/java.mk:9: *** development/samples/AliasActivity: Target java module does not define any source or resource files. Stop.
However, building from the actual copy works just fine, and it does not "implicitly install apns-conf_sdk.xml". Looking closer at the makefiles, it seems as though building from the shadow copy does not set certain environmental variables expected by the makefiles in build/core. Does anyone know why this may be, or a possible workaround for what I am trying to do? Is it possible to build Android from a shadow copy in this way?