Use quotes around ${RELEASETAG} to allow values like

-r RELENG_4 -D "2001-07-17 12:00"
This commit is contained in:
Poul-Henning Kamp 2001-07-18 05:40:30 +00:00
parent 87aaead2f8
commit be1234f248
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79844

View File

@ -31,7 +31,7 @@ BUILDNAME?=${BASE}-${DATE}-SNAP
# are building an official release. Otherwise, we are building for
# a branch.
.if defined(RELEASETAG)
ISRELEASE!= expr ${RELEASETAG} : '^RELENG_.*_RELEASE$$' || true
ISRELEASE!= expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
.if ${ISRELEASE} != 0
# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
AUXRELEASETAG!= echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
@ -331,7 +331,7 @@ rerelease release:
echo "export BUILDNAME=${BUILDNAME}" >> ${CHROOTDIR}/mk
echo "export OBJFORMAT=${OBJFORMAT}" >> ${CHROOTDIR}/mk
.if defined(RELEASETAG)
echo "export RELEASETAG=${RELEASETAG}" >> ${CHROOTDIR}/mk
echo "export RELEASETAG=\"${RELEASETAG}\"" >> ${CHROOTDIR}/mk
.endif
.if defined(NOPORTS)
echo "export NOPORTS=${NOPORTS}" >> ${CHROOTDIR}/mk