aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-05-08 16:34:23 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-05-08 16:34:23 +0200
commit52316bb3f55235cc3e6bd3317c83b391a80c66da (patch)
treecabc9c8d4b05c404ece085f09804343914471ace /build
parent4d1f6352e68b2b64d5554224596bcf3c01b62b1a (diff)
parentd987c0a118940c2fb1cffbf54155596ec4f41c9c (diff)
downloadforums-52316bb3f55235cc3e6bd3317c83b391a80c66da.tar
forums-52316bb3f55235cc3e6bd3317c83b391a80c66da.tar.gz
forums-52316bb3f55235cc3e6bd3317c83b391a80c66da.tar.bz2
forums-52316bb3f55235cc3e6bd3317c83b391a80c66da.tar.xz
forums-52316bb3f55235cc3e6bd3317c83b391a80c66da.zip
Merge remote-tracking branch 'p/ticket/10178' into develop-olympus
* p/ticket/10178: [ticket/10178] Add path to find command to build packages on FreeBSD.
Diffstat (limited to 'build')
-rw-r--r--build/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml
index 8fb34377a9..bc9240f37c 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -141,8 +141,8 @@
<echo msg="Setting permissions for checkout of ${revision} in ${dir}" />
<!-- set permissions of all files to 644, directories to 755 -->
- <exec dir="${dir}" command="find -type f|xargs chmod 644" escape="false" />
- <exec dir="${dir}" command="find -type d|xargs chmod 755" escape="false" />
+ <exec dir="${dir}" command="find . -type f|xargs chmod 644" escape="false" />
+ <exec dir="${dir}" command="find . -type d|xargs chmod 755" escape="false" />
<!-- set permissions of some directories to 777 -->
<chmod mode="0777" file="${dir}/cache" />
<chmod mode="0777" file="${dir}/store" />