From 69baba46930891d8ed172fd2fdc7757baf76f655 Mon Sep 17 00:00:00 2001 From: martymac Date: Mon, 9 Oct 2017 10:05:37 +0000 Subject: Fix exec(exit) error by forcing sub-shell utilization [1] [1] See make(1), "SHELL COMMANDS" section --- multimedia/sms1xxx-kmod/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'multimedia') 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 -- cgit