diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2024-03-29 23:59:53 +0300 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2024-04-04 18:01:51 +0300 |
commit | 49e954a42dd9d8dba4edf8138d4c8c28514839d1 (patch) | |
tree | d83c6966178189a950ad74475f32c981de6b0a1a /graphics/geeqie/files/patch-scripts_test-ancillary-files.sh | |
parent | games/warzone2100: update to 4.4.2 (diff) |
graphics/geeqie: update 2.1 → 2.4
Diffstat (limited to 'graphics/geeqie/files/patch-scripts_test-ancillary-files.sh')
-rw-r--r-- | graphics/geeqie/files/patch-scripts_test-ancillary-files.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/graphics/geeqie/files/patch-scripts_test-ancillary-files.sh b/graphics/geeqie/files/patch-scripts_test-ancillary-files.sh new file mode 100644 index 000000000000..322606c930d8 --- /dev/null +++ b/graphics/geeqie/files/patch-scripts_test-ancillary-files.sh @@ -0,0 +1,26 @@ +--- scripts/test-ancillary-files.sh.orig 2024-03-23 13:57:27 UTC ++++ scripts/test-ancillary-files.sh +@@ -1,4 +1,5 @@ + #!/bin/sh ++exit 0 # despite fixes, fails in later find calls + #********************************************************************** + # Copyright (C) 2024 - The Geeqie Team + # +@@ -63,7 +64,7 @@ done << EOF + fi + fi + done << EOF +-$(find "$1/plugins" "$1/src" "$1/scripts" -type f -executable) ++$(find "$1/plugins" "$1/src" "$1/scripts" -type f -perm +u=x) + EOF + + # Check if all options are in the disabled checks +@@ -199,7 +200,7 @@ else + if [ -n "$line" ] + then + desktop_file=$(basename "$line" ".in") +- ln --symbolic "$line" "$1/$desktop_file" ++ ln -s "$line" "$1/$desktop_file" + result=$(desktop-file-validate "$1/$desktop_file") + + rm "$1/$desktop_file" |