summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-01-20 18:06:25 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-01-20 18:06:25 +0100
commit1103e9970a44b2bf14ce9e1ad53b485f00fa406d (patch)
tree2ca16e3777ba6da052cda41c706385b0a4c5b46e
parent6e1b689b47682477121b8fccb0ed751ede91cfc9 (diff)
parentd3332a574ed03253f841405a9df7cf4801d5173b (diff)
Merge pull request #3396 from includeLuka/master
Fixed wrong variable names
-rwxr-xr-xmethods.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods.py b/methods.py
index a894973e69..e8de4696cd 100755
--- a/methods.py
+++ b/methods.py
@@ -1287,10 +1287,10 @@ def android_add_java_dir(self,subpath):
def android_add_res_dir(self,subpath):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
self.android_res_dirs.append(base_path)
-def android_add_aidl_dir(self,file):
+def android_add_aidl_dir(self,subpath):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
self.android_aidl_dirs.append(base_path)
-def android_add_jni_dir(self,file):
+def android_add_jni_dir(self,subpath):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
self.android_jni_dirs.append(base_path)