From bef384b0582ca327d03fedbb717454e59c8536b1 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Sat, 15 Mar 2014 17:08:38 +0100 Subject: [PATCH] Don't copy over package versions into package-list for bootstrap. * This decouples the versions referenced by the architecture-specific repository file from the actual versions available in the haikuports branch that happens to be used for the bootstrap build. --- build/jam/ImageRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/ImageRules b/build/jam/ImageRules index a78f1f3f01..84e562d27f 100644 --- a/build/jam/ImageRules +++ b/build/jam/ImageRules @@ -1153,7 +1153,7 @@ rule BuildHaikuImagePackageList target } # extract the versioned package names (without revision) - packageFiles = [ Match "(.*)-[^-]*-[^-]*" : $(packageFiles:B) ] ; + packageFiles = [ Match "^([^-]*)" : $(packageFiles:B) ] ; HAIKU_IMAGE_PACKAGES on $(target) = $(packageFiles) ; }