From a0881d00ebbfbd029ee26346f0a754151ab00118 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Mon, 11 Apr 2016 12:33:42 +0000 Subject: [PATCH] Fix a "build.sh: [[: not found" error message. (does not fix the build, though.) Sponsored by: Absolight --- devel/py-delfick_error/files/patch-docs_build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/py-delfick_error/files/patch-docs_build.sh diff --git a/devel/py-delfick_error/files/patch-docs_build.sh b/devel/py-delfick_error/files/patch-docs_build.sh new file mode 100644 index 000000000000..064f6e7ad682 --- /dev/null +++ b/devel/py-delfick_error/files/patch-docs_build.sh @@ -0,0 +1,11 @@ +--- docs/build.sh.orig 2015-10-17 23:21:49 UTC ++++ docs/build.sh +@@ -11,7 +11,7 @@ for ARG in $*; do + done + + # use with --clean if you change anything in support +-if [[ $1 = "--clean" ]]; then ++if [ "$1" = "--clean" ]; then + rm -rf _build + fi +