diff options
author | John Marino <marino@FreeBSD.org> | 2014-08-30 22:14:10 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-08-30 22:14:10 +0000 |
commit | 4671731e5cccdf750284d0adc5505800ca5d32ec (patch) | |
tree | a71ff5f31c575a546200b59b240dc23e436b4112 /java/eclipse-langpack/files/install.sh | |
parent | net/poptop: Fix KERNPPP option operation (diff) |
Stage java/eclipse-langpack
PR: 193088
Submitted by: turutani (Kyoto)
Notes
Notes:
svn path=/head/; revision=366685
Diffstat (limited to 'java/eclipse-langpack/files/install.sh')
-rw-r--r-- | java/eclipse-langpack/files/install.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/eclipse-langpack/files/install.sh b/java/eclipse-langpack/files/install.sh index 1ac25893a348..037ecd2d2667 100644 --- a/java/eclipse-langpack/files/install.sh +++ b/java/eclipse-langpack/files/install.sh @@ -1,13 +1,12 @@ #!/bin/sh WRKDIR=$1; PREFIX=$2 -OWNER=$3; GROUP=$4; DPERM=$5; FPERM=$6 cd ${WRKDIR} for dir in `find eclipse -type d | sort`; do - install -d -o ${OWNER} -g ${GROUP} -m ${DPERM} ${PREFIX}/lib/${dir} + install -d ${PREFIX}/lib/${dir} done for file in `find eclipse -type f | sort`; do - install -c -o ${OWNER} -g ${GROUP} -m ${FPERM} ${file} ${PREFIX}/lib/${file} + install ${file} ${PREFIX}/lib/${file} done |