Use the new module database infrastructure.

This commit is contained in:
Jeffrey Townsend
2016-11-16 20:21:04 +00:00
parent 82eafedd6b
commit ab24f9914e
5 changed files with 13 additions and 12 deletions

View File

@@ -58,7 +58,7 @@ if __name__ == "__main__":
ModuleGenerator.main(globals().copy())
# Make sure the manifest gets regenerated.
os.system("rm -rf %s/make/module-manifest.mk" % ROOT)
os.system("rm -rf %s/make/modules/modules*" % ROOT)

View File

@@ -2,14 +2,11 @@
############################################################
#
# Every time a merge is performed we should invalidate
# the module manifest.
# the module data.
#
############################################################
mm="$GIT_DIR/../make/module-manifest.mk"
if [ -f "$mm" ]; then
echo "Removing module manifest after merge..."
rm "$mm"
fi
echo "Removing module data after merge..."
rm -rf "$GIT_DIR/../make/modules/modules*"

View File

@@ -13,7 +13,7 @@
############################################################
# Removing the manifest causes it to be regenerated.
rm -rf $ONL/make/module-manifest.mk
rm -rf $ONL/make/modules/module*
# Rebuild pkg cache
onlpm.py --rebuild-pkg-cache