diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-01-11 20:34:34 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-01-11 20:34:34 +0000 |
| commit | bb6972ab6e8d4334a6bac63b57764ecb0f046342 (patch) | |
| tree | 9ebdcdc2a1bd61f674ff74c06d04e631d8439d1b | |
| parent | 294d88444b7de0eaf12ff654ec9e6a7c3ce4a615 (diff) | |
Notes
| -rw-r--r-- | release/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile index 0be64bb1f1e0..2785b7946942 100644 --- a/release/Makefile +++ b/release/Makefile @@ -913,12 +913,16 @@ iso.1: @if [ -r ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ]; then \ echo "Creating ISO images..."; \ sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \ - fbsd_miniinst ${CD}/${BUILDNAME}-${TARGET}-miniinst.iso ${CD_DISC1}; \ + fbsd_miniinst \ + ${CD}/${BUILDNAME}-${TARGET}-miniinst.iso ${CD_DISC1}; \ sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \ - fbsd_livefs ${CD}/${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2}; \ + fbsd_livefs \ + ${CD}/${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2}; \ if [ "x${CD_EXTRA_BITS}" != "x" ]; then \ - sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \ - fbsd_boot ${CD}/${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} ${CD_EXTRA_BITS} \ + sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh \ + ${BOOTABLE} fbsd_boot \ + ${CD}/${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} \ + ${CD_EXTRA_BITS} \ && false; \ fi \ else \ |
