Last active
July 25, 2022 02:25
-
-
Save aliceinwire/3380f4234f8a6fe9500c3dabb510d0c0 to your computer and use it in GitHub Desktop.
deblob-5.15.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/deblob-5.15 2022-07-25 03:43:01.299949682 +0900 | |
+++ b/deblob-5.15 2022-07-25 11:24:33.129003693 +0900 | |
@@ -82,6 +82,27 @@ if [ ! -f $check ] ; then | |
else | |
have_check=: | |
[ -x $check ] || check="/bin/sh $check" | |
+ case $1 in | |
+ --use-python) | |
+ shift; | |
+ check="$check --use-python" | |
+ ;; | |
+ | |
+ --use-perl) | |
+ shift; | |
+ check="$check --use-perl" | |
+ ;; | |
+ | |
+ --use-awk) | |
+ shift; | |
+ check="$check --use-awk" | |
+ ;; | |
+ | |
+ --use-sed) | |
+ shift; | |
+ check="$check --use-sed" | |
+ ;; | |
+ esac | |
fi | |
filetest () { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment