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.
This commit is contained in:
Oliver Tappe
2014-03-16 01:17:54 +01:00
parent 998f404369
commit bef384b058
+1 -1
View File
@@ -1153,7 +1153,7 @@ rule BuildHaikuImagePackageList target
} }
# extract the versioned package names (without revision) # extract the versioned package names (without revision)
packageFiles = [ Match "(.*)-[^-]*-[^-]*" : $(packageFiles:B) ] ; packageFiles = [ Match "^([^-]*)" : $(packageFiles:B) ] ;
HAIKU_IMAGE_PACKAGES on $(target) = $(packageFiles) ; HAIKU_IMAGE_PACKAGES on $(target) = $(packageFiles) ;
} }