Skip to content

Instantly share code, notes, and snippets.

@aliceinwire
Last active July 25, 2022 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aliceinwire/3380f4234f8a6fe9500c3dabb510d0c0 to your computer and use it in GitHub Desktop.
Save aliceinwire/3380f4234f8a6fe9500c3dabb510d0c0 to your computer and use it in GitHub Desktop.
deblob-5.15.patch
--- 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