aboutsummaryrefslogtreecommitdiff
path: root/build-system/configure.py
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-10-28 14:48:50 +0200
committerFlorian Dold <florian@dold.me>2022-10-28 14:48:50 +0200
commitc32b80c1764f8a594bc085bd74382a5522b89c24 (patch)
treeb1b16fae5ce3c15f512eb366ef6f26a236fe1f8a /build-system/configure.py
parent390276fc53d3f337ef388729d0f1b0086d2a6a21 (diff)
downloadwallet-core-c32b80c1764f8a594bc085bd74382a5522b89c24.tar.xz
build system: use makefile directly, not from template
Diffstat (limited to 'build-system/configure.py')
-rw-r--r--build-system/configure.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/build-system/configure.py b/build-system/configure.py
index a4a936229..b127ba780 100644
--- a/build-system/configure.py
+++ b/build-system/configure.py
@@ -14,7 +14,7 @@ if getattr(tbc, "serialversion", 0) < 2:
b = tbc.BuildConfig()
b.enable_prefix()
-b.enable_configmk()
+b.enable_configmk(dotfile=True)
b.add_tool(tbc.PosixTool("make"))
b.add_tool(tbc.PosixTool("zip"))
b.add_tool(tbc.PosixTool("find"))
@@ -23,6 +23,3 @@ b.add_tool(tbc.NodeJsTool(version_spec=">=12"))
b.add_tool(tbc.GenericTool("npm"))
b.add_tool(tbc.GenericTool("pnpm", hint="Use 'sudo npm install -g pnpm' to install."))
b.run()
-
-print("copying Makefile")
-shutil.copyfile("build-system/Makefile", "Makefile")