svn commit: r413023 - head/devel/py-delfick_error/files

Mathieu Arnold mat at FreeBSD.org
Mon Apr 11 12:33:43 UTC 2016


Author: mat
Date: Mon Apr 11 12:33:42 2016
New Revision: 413023
URL: https://svnweb.freebsd.org/changeset/ports/413023

Log:
  Fix a "build.sh: [[: not found" error message.
  
  (does not fix the build, though.)
  
  Sponsored by:	Absolight

Added:
  head/devel/py-delfick_error/files/
  head/devel/py-delfick_error/files/patch-docs_build.sh   (contents, props changed)

Added: head/devel/py-delfick_error/files/patch-docs_build.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-delfick_error/files/patch-docs_build.sh	Mon Apr 11 12:33:42 2016	(r413023)
@@ -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
+ 


More information about the svn-ports-all mailing list