Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatalie Chouinard <1953083+sudonatalie@users.noreply.github.com>2022-04-07 16:19:05 +0300
committerGitHub <noreply@github.com>2022-04-07 16:19:05 +0300
commit78a0f075ac851e64502bc09098b7ebb4c8748d2e (patch)
tree19a59f37c5ff844ce61edf5e29f21203aa2f52ae /Android.mk
parenteed5c76a57bb965f2e1b56d1dc40b50910b5ec1d (diff)
Fix gen_build_version on Windows (#4780)
* Fix gen_build_version on Windows The paths used in the gen_build_version script are causing some failures in downstream builds. Switch to using the location of the CHANGES file rather than the ".." parent directory workaround. * Update other build files
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index e7616f95c..b9fbcc835 100644
--- a/Android.mk
+++ b/Android.mk
@@ -302,7 +302,7 @@ $(1)/build-version.inc: \
$(LOCAL_PATH)/utils/update_build_version.py \
$(LOCAL_PATH)/CHANGES
@$(HOST_PYTHON) $(LOCAL_PATH)/utils/update_build_version.py \
- $(LOCAL_PATH) $(1)/build-version.inc
+ $(LOCAL_PATH)/CHANGES $(1)/build-version.inc
@echo "[$(TARGET_ARCH_ABI)] Generate : build-version.inc <= CHANGES"
$(LOCAL_PATH)/source/software_version.cpp: $(1)/build-version.inc
endef