Fix exec(exit) error by forcing sub-shell utilization [1]
[1] See make(1), "SHELL COMMANDS" section
This commit is contained in:
parent
78e71d7df6
commit
8132a1d540
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=451590
1 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@ DEBUG_ALL_TARGET= debug
|
||||||
STELLAR_DESC= Build Terratec Cinergy Piranha FW
|
STELLAR_DESC= Build Terratec Cinergy Piranha FW
|
||||||
NOVA_DESC= Build Hauppauge WinTV MiniStick FW
|
NOVA_DESC= Build Hauppauge WinTV MiniStick FW
|
||||||
|
|
||||||
ONLY_FOR_ARCHS= i386 amd64
|
ONLY_FOR_ARCHS= amd64 i386
|
||||||
|
|
||||||
SUB_FILES= pkg-message
|
SUB_FILES= pkg-message
|
||||||
|
|
||||||
|
@ -76,9 +76,9 @@ DISTFILE_INSTRUCTIONS+= \
|
||||||
IGNORE= requires manual fetch
|
IGNORE= requires manual fetch
|
||||||
.else
|
.else
|
||||||
pre-fetch:
|
pre-fetch:
|
||||||
@${MKDIR} ${DISTDIR}/${DIST_SUBDIR}
|
@${MKDIR} ${DISTDIR}/${DIST_SUBDIR}; \
|
||||||
@${PRINTF} "${DISTFILE_INSTRUCTIONS}"
|
${PRINTF} "${DISTFILE_INSTRUCTIONS}"; \
|
||||||
@exit 1
|
exit 1
|
||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue