From 4748a8a2f7c1fed8c12db917f17e767417b46667 Mon Sep 17 00:00:00 2001 From: tfuxu <73042332+tfuxu@users.noreply.github.com> Date: Tue, 13 Sep 2022 20:43:32 +0000 Subject: [PATCH] Delete meson_post_install.py Signed-off-by: tfuxu <73042332+tfuxu@users.noreply.github.com> --- build-aux/meson_post_install.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 build-aux/meson_post_install.py diff --git a/build-aux/meson_post_install.py b/build-aux/meson_post_install.py deleted file mode 100644 index a496a557..00000000 --- a/build-aux/meson_post_install.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python3 - -import os -import subprocess - -build_root = os.environ.get("MESON_BUILD_ROOT") -source_root = os.environ.get("MESON_SOURCE_ROOT") - -subprocess.call( - ["mv", build_root, "gradience/constants.py", - source_root, "gradience/constants.py"] -)