Received: by mail.netbsd.org (Postfix, from userid 605) id B520884D52; Tue, 28 Apr 2020 03:04:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E1C584D48 for ; Tue, 28 Apr 2020 03:04:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id jKuJh8uiDBAk for ; Tue, 28 Apr 2020 03:04:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id ADF2684CEF for ; Tue, 28 Apr 2020 03:04:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A44DFFB27; Tue, 28 Apr 2020 03:04:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158804307621590" MIME-Version: 1.0 Date: Tue, 28 Apr 2020 03:04:36 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/net/DarwinStreamingServer To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200428030436.A44DFFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158804307621590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Tue Apr 28 03:04:36 UTC 2020 Modified Files: pkgsrc/net/DarwinStreamingServer: Makefile Log Message: net/DarwinStreamingServer: fix build for SUBST_NOOP_OK=no Two of the mentioned files did not actually contain the optimization flag, which triggered this error during the build: ERROR: [subst.mk:makefile] The filename patterns "QTFileTools/QTBroadcaster.tproj/Makefile.POSIX QTFileTools/QTFileInfo.tproj/Makefile.POSIX" have no effect. Since the files need not be listed individually, the new definition is shorter and will also apply to any newly added subdirectories. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/net/DarwinStreamingServer/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158804307621590 Content-Disposition: inline Content-Length: 2267 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/DarwinStreamingServer/Makefile diff -u pkgsrc/net/DarwinStreamingServer/Makefile:1.26 pkgsrc/net/DarwinStreamingServer/Makefile:1.27 --- pkgsrc/net/DarwinStreamingServer/Makefile:1.26 Sun Nov 3 11:45:28 2019 +++ pkgsrc/net/DarwinStreamingServer/Makefile Tue Apr 28 03:04:36 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2019/11/03 11:45:28 rillig Exp $ +# $NetBSD: Makefile,v 1.27 2020/04/28 03:04:36 rillig Exp $ DISTNAME= DarwinStreamingSrvr5.5.5-Source PKGNAME= DarwinStreamingServer-5.5.5 @@ -79,28 +79,7 @@ CONF_FILES+= share/examples/streaming/s SUBST_CLASSES+= makefile SUBST_STAGE.makefile= pre-configure SUBST_MESSAGE.makefile= Fixing Makefiles -SUBST_FILES.makefile+= APIModules/QTSSDemoAuthorizationModule.bproj/Makefile.POSIX -SUBST_FILES.makefile+= APIModules/QTSSHomeDirectoryModule/Makefile.POSIX -SUBST_FILES.makefile+= APIModules/QTSSRawFileModule.bproj/Makefile.POSIX -SUBST_FILES.makefile+= APIModules/QTSSRefMovieModule/Makefile.POSIX -SUBST_FILES.makefile+= APIModules/QTSSSpamDefenseModule.bproj/Makefile.POSIX -SUBST_FILES.makefile+= APIStubLib/makefile.apistublib.POSIX -SUBST_FILES.makefile+= CommonUtilitiesLib/Makefile.POSIX -SUBST_FILES.makefile+= HTTPUtilitiesLib/Makefile.POSIX -SUBST_FILES.makefile+= MP3Broadcaster/Makefile.POSIX -SUBST_FILES.makefile+= Makefile.POSIX -SUBST_FILES.makefile+= PlaylistBroadcaster.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileLib/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTBroadcaster.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTFileInfo.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTFileTest.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTRTPFileTest.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTRTPGen.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTSDPGen.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTSampleLister.tproj/Makefile.POSIX -SUBST_FILES.makefile+= QTFileTools/QTTrackInfo.tproj/Makefile.POSIX -SUBST_FILES.makefile+= StreamingProxy.tproj/Makefile.POSIX -SUBST_FILES.makefile+= qtpasswd.tproj/Makefile.POSIX +SUBST_FILES.makefile= Makefile.POSIX */Makefile.POSIX */*/Makefile.POSIX SUBST_SED.makefile+= -e "s|-O[023]||" SUBST_CLASSES+= path --_----------=_158804307621590--