mirror of
https://github.com/corda/corda.git
synced 2025-01-17 02:09:50 +00:00
Added patching of security.properties - removed "com.android." in front of all "com.android.org.*" classes
This commit is contained in:
parent
df06564392
commit
a311ced69e
6
makefile
6
makefile
@ -1605,8 +1605,12 @@ $(build)/android.dep: $(luni-javas) $(libdvm-javas) $(crypto-javas) \
|
||||
$(build)/android/java/lang/reflect/Proxy*
|
||||
cp -r $(build)/android/* $(classpath-build)
|
||||
for x in $(luni-copied-nonjavas); \
|
||||
do cp -f $(luni-java)$${x} $(classpath-build)$${x} ; \
|
||||
do cp $(luni-java)$${x} $(classpath-build)$${x} ; \
|
||||
done
|
||||
# fix security.properties - get rid of "com.android" in front of classes starting with "org"
|
||||
sed -i -e 's/\(.*=\)com\.android\.\(org\..*\)/\1\2/g' \
|
||||
$(classpath-build)/java/security/security.properties
|
||||
chmod +w $(classpath-build)/java/security/security.properties
|
||||
@touch $(@)
|
||||
|
||||
$(test-build)/%.class: $(test)/%.java
|
||||
|
Loading…
Reference in New Issue
Block a user