diff options
author | ru <ru@FreeBSD.org> | 2004-01-29 16:21:00 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-01-29 16:21:00 +0000 |
commit | bcac273a5d72e8e14a2fa7e1d2af2eb070f0e679 (patch) | |
tree | 2157f8047f79b51171e8e326fbefe89cc1733c27 /release | |
parent | 30df04b3ec5ee9ee6e64e0d266a42fa5ec82aa22 (diff) | |
download | FreeBSD-src-bcac273a5d72e8e14a2fa7e1d2af2eb070f0e679.zip FreeBSD-src-bcac273a5d72e8e14a2fa7e1d2af2eb070f0e679.tar.gz |
Two nits from rev. 1.835:
- Fixed spelling of NO_FLOPPIES to unbreak snapshot building on
architectures that don't support them (as installation source).
- Don't rely on CVS setting execution bits on the shell script.
(This is also consistent with the rest of this makefile.)
Reviewed by: jhb
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/Makefile b/release/Makefile index 21e217c..6e81329 100644 --- a/release/Makefile +++ b/release/Makefile @@ -245,7 +245,7 @@ CRUNCH_TARGETS+=fixit-small .endif .endif -.if !defined(NOFLOPPIES) +.if !defined(NO_FLOPPIES) EXTRAS= floppies.1 floppies.2 floppies.3 .endif EXTRAS+= ftp.1 @@ -1082,7 +1082,7 @@ makeFloppySet: .if !defined(SPLITFILE) @echo "SPLITFILE undefined in ${.TARGET}" && exit 1 .endif - ${.CURDIR}/scripts/split-file.sh ${SPLITFILE} \ + sh ${.CURDIR}/scripts/split-file.sh ${SPLITFILE} \ ${RD}/floppyset/${FLOPPYBASE} ${FLPSPLITSIZE} "${FLOPPYDESC}" ( splitfile=${SPLITDIR}/`basename ${SPLITFILE}`.split ; \ lines=`cat $${splitfile} | wc -l`; \ |