svn commit: r451590 - head/multimedia/sms1xxx-kmod

Ganael LAPLANCHE martymac at FreeBSD.org
Mon Oct 9 10:05:39 UTC 2017


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
 


More information about the svn-ports-all mailing list