aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libretro-ppsspp/patch-disable-git-version.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libretro-ppsspp/patch-disable-git-version.patch')
-rw-r--r--testing/libretro-ppsspp/patch-disable-git-version.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/libretro-ppsspp/patch-disable-git-version.patch b/testing/libretro-ppsspp/patch-disable-git-version.patch
new file mode 100644
index 00000000000..cf2d9368c77
--- /dev/null
+++ b/testing/libretro-ppsspp/patch-disable-git-version.patch
@@ -0,0 +1,25 @@
+Don't use git to append version into source code.
+--- a/git-version.cmake
++++ b/git-version.cmake
+@@ -1,20 +1,6 @@
+ set(GIT_VERSION_FILE "${SOURCE_DIR}/git-version.cpp")
+-set(GIT_VERSION "unknown")
++set(GIT_VERSION "@VERSION@")
+ set(GIT_VERSION_UPDATE "1")
+-
+-find_package(Git)
+-if(GIT_FOUND AND EXISTS "${SOURCE_DIR}/.git/")
+- execute_process(COMMAND ${GIT_EXECUTABLE} describe --always
+- WORKING_DIRECTORY ${SOURCE_DIR}
+- RESULT_VARIABLE exit_code
+- OUTPUT_VARIABLE GIT_VERSION)
+- if(NOT ${exit_code} EQUAL 0)
+- message(WARNING "git describe failed, unable to include version.")
+- endif()
+- string(STRIP ${GIT_VERSION} GIT_VERSION)
+-else()
+- message(WARNING "git not found, unable to include version.")
+-endif()
+
+ if(EXISTS ${GIT_VERSION_FILE})
+ # Don't update if marked not to update.