diff options
-rw-r--r-- | release/Makefile | 8 |
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 \ |