aboutsummaryrefslogtreecommitdiff
path: root/www/cakephp13
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2009-04-21 20:24:36 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2009-04-21 20:24:36 +0000
commit9157ceb1ad5bf24cba6d30986cb93a710fb0a9f6 (patch)
tree25dce474f2116547561778239ee979c2e4b65c8d /www/cakephp13
parent1568e43108a81534fa02c2a3c85e385e116e8f77 (diff)
downloadports-9157ceb1ad5bf24cba6d30986cb93a710fb0a9f6.tar.gz
ports-9157ceb1ad5bf24cba6d30986cb93a710fb0a9f6.zip
Notes
Diffstat (limited to 'www/cakephp13')
-rw-r--r--www/cakephp13/files/patch-cake__console__cake21
1 files changed, 21 insertions, 0 deletions
diff --git a/www/cakephp13/files/patch-cake__console__cake b/www/cakephp13/files/patch-cake__console__cake
new file mode 100644
index 000000000000..ca268e41f821
--- /dev/null
+++ b/www/cakephp13/files/patch-cake__console__cake
@@ -0,0 +1,21 @@
+--- ./cake/console/cake.orig 2009-04-21 16:16:45.000000000 -0400
++++ ./cake/console/cake 2009-04-21 16:16:54.000000000 -0400
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ ################################################################################
+ #
+ # Bake is a shell script for running CakePHP bake script
+@@ -24,9 +24,9 @@
+ ################################################################################
+ clear
+
+-LIB=${0/%cake/}
++LIB=${0%cake}
+ APP=`pwd`
+
+ exec php -q ${LIB}cake.php -working "${APP}" "$@"
+
+-exit;
+\ No newline at end of file
++exit;