Fix exec(exit) error by forcing sub-shell utilization [1]

[1] See make(1), "SHELL COMMANDS" section
This commit is contained in:
Ganael LAPLANCHE 2017-10-09 10:05:37 +00:00
parent 78e71d7df6
commit 8132a1d540
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=451590

View file

@ -30,7 +30,7 @@ DEBUG_ALL_TARGET= debug
STELLAR_DESC= Build Terratec Cinergy Piranha FW
NOVA_DESC= Build Hauppauge WinTV MiniStick FW
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS= amd64 i386
SUB_FILES= pkg-message
@ -76,9 +76,9 @@ DISTFILE_INSTRUCTIONS+= \
IGNORE= requires manual fetch
.else
pre-fetch:
@${MKDIR} ${DISTDIR}/${DIST_SUBDIR}
@${PRINTF} "${DISTFILE_INSTRUCTIONS}"
@exit 1
@${MKDIR} ${DISTDIR}/${DIST_SUBDIR}; \
${PRINTF} "${DISTFILE_INSTRUCTIONS}"; \
exit 1
.endif
.endif