diff options
author | sam <sam@FreeBSD.org> | 2006-03-21 15:50:08 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2006-03-21 15:50:08 +0000 |
commit | a2c94cecc033518580f28713e669d3f2a7783306 (patch) | |
tree | 170b07dbbf80603e4e95f03d3c0e562b21b34380 /release/Makefile | |
parent | bf38dd21fab966bd5c358fe238a6c14eabb9e45d (diff) | |
download | FreeBSD-src-a2c94cecc033518580f28713e669d3f2a7783306.zip FreeBSD-src-a2c94cecc033518580f28713e669d3f2a7783306.tar.gz |
make sure install scripts are executable
Submitted by: Ceri Davies
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index f7a19a7..9bad024 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1117,7 +1117,8 @@ doTARBALL: > ${RD}/dists/${TD}/$$tn.inf && \ if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \ cp -p ${.CURDIR}/scripts/$${TD}-install.sh \ - ${RD}/dists/${TD}/install.sh; \ + ${RD}/dists/${TD}/install.sh && \ + chmod +x ${RD}/dists/${TD}/install.sh; \ fi && \ if [ "${SD}" != "/usr/src" ]; then \ mtree -c -i -p ${SD}/${ARG} \ |