From f69f5a44a1ea81459e2478f59d0476e5c9e9c8d3 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Tue, 11 Mar 2014 22:05:11 +0100 Subject: [PATCH] Filter non-rigged source packages from bootstrap image. * Before, we were putting both rigged and standard source packages onto the bootstrap image, which caused the build to fail (because non-rigged source packages can only be built with git available). --- build/jam/images/HaikuImageBootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/images/HaikuImageBootstrap b/build/jam/images/HaikuImageBootstrap index 8683e9e1ee..dd54fb8983 100644 --- a/build/jam/images/HaikuImageBootstrap +++ b/build/jam/images/HaikuImageBootstrap @@ -184,7 +184,7 @@ AddPackageFilesToHaikuImage system : # build and add the source package directory and a haikuports.config file CopyDirectoryToHaikuImage home haikuports : [ BuildHaikuPortsSourcePackageDirectory ] - : input-source-packages : : isTarget ; + : input-source-packages : -x *_source-*.hpkg : isTarget ; AddFilesToHaikuImage home haikuports : [ BuildHaikuPortsRepositoryConfig /boot/home/haikuports ] ;