summaryrefslogtreecommitdiffstats
path: root/core/includes/clean_module_funcs.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/includes/clean_module_funcs.inc')
-rw-r--r--core/includes/clean_module_funcs.inc23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/includes/clean_module_funcs.inc b/core/includes/clean_module_funcs.inc
new file mode 100644
index 00000000..91f13942
--- /dev/null
+++ b/core/includes/clean_module_funcs.inc
@@ -0,0 +1,23 @@
+# Called when the sources for this module need to be fetched.
+# Not called if fetched_source.flag exists
+fetch_source() {
+ :
+}
+
+# Called when the module should be built.
+# Not called if build_complete.flag exists
+build() {
+ :
+}
+
+# Called after the relevant files from the module's build dir
+# have been copied to the target dir.
+post_copy() {
+ :
+}
+
+# Called when this module is about to be handled, before fetching the source.
+module_load() {
+ :
+}
+