diff options
Diffstat (limited to 'package/python')
-rw-r--r-- | package/python/Config.in | 8 | ||||
-rw-r--r-- | package/python/Makefile.in | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/package/python/Config.in b/package/python/Config.in new file mode 100644 index 000000000..f2abf975e --- /dev/null +++ b/package/python/Config.in @@ -0,0 +1,8 @@ +# + +config BR2_PACKAGE_PYTHON + bool"python" + default n + help + Add help text here. + diff --git a/package/python/Makefile.in b/package/python/Makefile.in new file mode 100644 index 000000000..ded82d842 --- /dev/null +++ b/package/python/Makefile.in @@ -0,0 +1,3 @@ +ifeq ($(strip $(BR2_PACKAGE_PYTHON)),y) +TARGETS+=python +endif |