summaryrefslogtreecommitdiff
path: root/www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2022-04-12 22:57:45 +0000
committertnn <tnn@pkgsrc.org>2022-04-12 22:57:45 +0000
commit78f299cdbe7f52f7dbe841039bbe1531dbbb69d8 (patch)
tree7ed8f72a47399578bc3216b18bc1e4fb0b207187 /www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs
parent1395a28a88ad85d159e226ef9f191be857263af9 (diff)
downloadpkgsrc-78f299cdbe7f52f7dbe841039bbe1531dbbb69d8.tar.gz
geckodriver: update to 0.31.0
Might make it work with current Firefox releases. Didn't test. Reset MAINTAINER.
Diffstat (limited to 'www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs')
-rw-r--r--www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs b/www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs
deleted file mode 100644
index 854f4d03ff6..00000000000
--- a/www/geckodriver/patches/patch-vendor_mozrunner_src_runner.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-vendor_mozrunner_src_runner.rs,v 1.4 2019/07/22 23:48:31 tnn Exp $
-
-Make the linux method the fallback method.
-
---- ../vendor/mozrunner-0.9.0/src/runner.rs.orig 2019-01-03 11:24:34.000000000 +0000
-+++ ../vendor/mozrunner-0.9.0/src/runner.rs
-@@ -410,12 +410,12 @@ pub mod platform {
-
- #[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
- pub mod platform {
-+ use path::find_binary;
- use std::path::PathBuf;
-
-- /// Returns `None` for all other operating systems than Linux, macOS, and
-- /// Windows.
-+ /// Searches the system path for `firefox`.
- pub fn firefox_default_path() -> Option<PathBuf> {
-- None
-+ find_binary("firefox")
- }
-
- pub fn arg_prefix_char(c: char) -> bool {