1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Fix a "build.sh: [[: not found" error message.

(does not fix the build, though.)

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2016-04-11 12:33:42 +00:00
parent 8551a672fe
commit a0881d00eb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=413023

View File

@ -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