about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-05-04 19:52:24 +0200
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-05-04 19:52:24 +0200
commit9cb260d091f5a474ee70ddccc6b8ecad825a78dc (patch)
treebd916d0989e7ec64fa7a1fda00ce0d9e000afecf /pkgs/games
parent01c27d6faf44ccd435069bcbe40785f9e0bfd9be (diff)
[treewide] delete unused patches
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/the-powder-toy/fix-env.patch11
-rw-r--r--pkgs/games/trigger/search.patch14
2 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/games/the-powder-toy/fix-env.patch b/pkgs/games/the-powder-toy/fix-env.patch
deleted file mode 100644
index b09fd4dcbe9c7..0000000000000
--- a/pkgs/games/the-powder-toy/fix-env.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/SConscript
-+++ b/SConscript
-@@ -99,7 +99,7 @@
- elif platform == "Windows" and not GetOption('msvc'):
- 	env = Environment(tools=['mingw'], ENV={'PATH' : os.environ['PATH']})
- else:
--	env = Environment(tools=['default'], ENV={'PATH' : os.environ['PATH']})
-+	env = Environment(tools=['default'], ENV = os.environ)
- 
- #attempt to automatically find cross compiler
- if not tool and compilePlatform == "Linux" and compilePlatform != platform:
diff --git a/pkgs/games/trigger/search.patch b/pkgs/games/trigger/search.patch
deleted file mode 100644
index 60a69b159b5bd..0000000000000
--- a/pkgs/games/trigger/search.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/src/Trigger/main.cpp b/src/Trigger/main.cpp
-index 39539e1..680c12c 100644
---- a/src/Trigger/main.cpp
-+++ b/src/Trigger/main.cpp
-@@ -890,7 +890,8 @@ bool MainApp::loadAll()
-                 std::smatch mr; // Match Results
-                 std::regex pat(R"(^(\w+)(\..+)$)"); // Pattern
- 
--                if (!std::regex_search(std::string(*fname), mr, pat))
-+                std::string search(*fname);
-+                if (!std::regex_search(search, mr, pat))
-                     continue;
- 
-                 std::string basefname = mr[1];