Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Oct 2017 10:05:37 +0000 (UTC)
From:      Ganael LAPLANCHE <martymac@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451590 - head/multimedia/sms1xxx-kmod
Message-ID:  <201710091005.v99A5b5W003406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: martymac
Date: Mon Oct  9 10:05:37 2017
New Revision: 451590
URL: https://svnweb.freebsd.org/changeset/ports/451590

Log:
  Fix exec(exit) error by forcing sub-shell utilization [1]
  
  [1] See make(1), "SHELL COMMANDS" section

Modified:
  head/multimedia/sms1xxx-kmod/Makefile

Modified: head/multimedia/sms1xxx-kmod/Makefile
==============================================================================
--- head/multimedia/sms1xxx-kmod/Makefile	Mon Oct  9 09:42:45 2017	(r451589)
+++ head/multimedia/sms1xxx-kmod/Makefile	Mon Oct  9 10:05:37 2017	(r451590)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710091005.v99A5b5W003406>