about summary refs log tree commit diff
path: root/pkgs/tools/system/osquery/Remove-git-reset.patch
blob: af5b165a851ee94a3dfa19498754866710759283 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From: Jack Baldry <jack.baldry@grafana.com>
Date: Tue, 15 Nov 2022 13:48:07 -0400
Subject: [PATCH] Remove git reset

This is not required for nixpkgs builds because we are not working in
the source repository and therefore do not need to be careful about
updating submodule content.

Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
---
 libraries/cmake/source/modules/utils.cmake | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/libraries/cmake/source/modules/utils.cmake b/libraries/cmake/source/modules/utils.cmake
--- a/libraries/cmake/source/modules/utils.cmake
+++ b/libraries/cmake/source/modules/utils.cmake
@@ -102,17 +102,6 @@ function(patchSubmoduleSourceCode library_name patches_dir source_dir apply_to_d
     file(COPY "${source_dir}" DESTINATION "${parent_dir}")
   endif()
 
-  # We need to restore the source code to its original state, pre patch
-  execute_process(
-    COMMAND "${GIT_EXECUTABLE}" reset --hard HEAD
-    RESULT_VARIABLE process_exit_code
-    WORKING_DIRECTORY "${source_dir}"
-  )
-
-  if(NOT ${process_exit_code} EQUAL 0)
-    message(FATAL_ERROR "Failed to git reset the following submodule: \"${source_dir}\"")
-  endif()
-
   set(patchSubmoduleSourceCode_Patched TRUE PARENT_SCOPE)
 endfunction()
 
-- 
2.38.1