aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authormartymac <martymac@FreeBSD.org>2017-10-09 18:05:37 +0800
committermartymac <martymac@FreeBSD.org>2017-10-09 18:05:37 +0800
commit69baba46930891d8ed172fd2fdc7757baf76f655 (patch)
tree1a99ced90a8ca4039af6d56abdadad68796d3d24 /multimedia
parentb4848a685971d93470395709297081703c66cf51 (diff)
downloadfreebsd-ports-gnome-69baba46930891d8ed172fd2fdc7757baf76f655.tar.gz
freebsd-ports-gnome-69baba46930891d8ed172fd2fdc7757baf76f655.tar.zst
freebsd-ports-gnome-69baba46930891d8ed172fd2fdc7757baf76f655.zip
Fix exec(exit) error by forcing sub-shell utilization [1]
[1] See make(1), "SHELL COMMANDS" section
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/sms1xxx-kmod/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/multimedia/sms1xxx-kmod/Makefile b/multimedia/sms1xxx-kmod/Makefile
index 18072efceaaa..69f4e143a49d 100644
--- a/multimedia/sms1xxx-kmod/Makefile
+++ b/multimedia/sms1xxx-kmod/Makefile
@@ -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