summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2001-09-02 19:05:27 +0000
committerjkh <jkh@FreeBSD.org>2001-09-02 19:05:27 +0000
commitb3ac07522908287b53a4f7e77f2e5205c4f72fb7 (patch)
treeafb07bb9e9f961cf38d1a98e5e1f1327e6d9791f /release
parent5f47d5134a968c97b20a6fdb73a0b028661e4c3f (diff)
downloadFreeBSD-src-b3ac07522908287b53a4f7e77f2e5205c4f72fb7.zip
FreeBSD-src-b3ac07522908287b53a4f7e77f2e5205c4f72fb7.tar.gz
Use sh to execute scripts and just check that the script is readable.
I guess I pooched the permissions on the scripts before committing them since they're not executable and now it's too late to change (I think - I suppose you could chmod the ,v files and it might inheirit but I don't feel like asking the repomeisters to try that). Noticed by: Dirk Froemberg <dirk@freebsd.org>
Diffstat (limited to 'release')
-rw-r--r--release/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile
index 116c2b0..d6ca2b7 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -781,14 +781,14 @@ cdrom.1:
touch cdrom.1
iso.1:
- @if [ -x ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh ]; then \
+ @if [ -r ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh ]; then \
echo "Creating ISO images..."; \
- ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_miniinst \
+ sh ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_miniinst \
${CD}/miniinst.iso ${CD_DISC1}; \
- ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_livefs \
+ sh ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_livefs \
${CD}/disc2.iso ${CD_DISC2}; \
if [ "x${CD_EXTRA_BITS}" != "x" ]; then \
- ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_boot \
+ sh ${.CURDIR}/${MACHINE_ARCH}/mkisoimages.sh -b fbsd_boot \
${CD}/disc1.iso ${CD_DISC1} ${CD_EXTRA_BITS}; \
fi \
else \
OpenPOWER on IntegriCloud