From 93fcf656e2aafc6a75ee06dab3e471e1eb509d87 Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Thu, 28 Jan 2016 11:14:19 -0600 Subject: [PATCH] fix missing mk files in installed p4a --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9e015345f2..1947854c03 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,8 @@ def recursively_include(results, directory, patterns): results[directory].append(join(*filename.split(sep)[1:])) recursively_include(package_data, 'pythonforandroid/recipes', - ['*.patch', 'Setup*', '*.pyx', '*.py', '*.c', '*.h', ]) + ['*.patch', 'Setup*', '*.pyx', '*.py', '*.c', '*.h', + '*.mk', ]) recursively_include(package_data, 'pythonforandroid/bootstraps', ['*.properties', '*.xml', '*.java', '*.tmpl', '*.txt', '*.png', '*.mk', '*.c', '*.h', '*.py', '*.sh', '*.jpg', '*.aidl', ])