diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-07 22:30:53 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-07 22:31:44 -0400 |
commit | d987c0a118940c2fb1cffbf54155596ec4f41c9c (patch) | |
tree | be51277a7196519b886717d951215226276c0fae | |
parent | 3a70cb478c2531de31423c7f9006ef1fa746c548 (diff) | |
download | forums-d987c0a118940c2fb1cffbf54155596ec4f41c9c.tar forums-d987c0a118940c2fb1cffbf54155596ec4f41c9c.tar.gz forums-d987c0a118940c2fb1cffbf54155596ec4f41c9c.tar.bz2 forums-d987c0a118940c2fb1cffbf54155596ec4f41c9c.tar.xz forums-d987c0a118940c2fb1cffbf54155596ec4f41c9c.zip |
[ticket/10178] Add path to find command to build packages on FreeBSD.
PHPBB3-10178
-rw-r--r-- | build/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml index 268f09d674..25935106d7 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" /> |