mirror of
https://review.haiku-os.org/haiku
synced 2025-01-24 23:34:53 +01:00
8b21b2b910
* the bootstrap build keeps on building the in-tree bash.
21 lines
767 B
Plaintext
21 lines
767 B
Plaintext
# This file defines the content of the bootstrap Haiku image.
|
|
|
|
# import everything from the minimum image
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images definitions minimum ] ;
|
|
|
|
SYSTEM_BIN += [ FFilterByBuildFeatures
|
|
bash
|
|
] ;
|
|
|
|
# build and add the source package directory and a haikuports.config file
|
|
CopyDirectoryToHaikuImage home haikuports
|
|
: [ BuildHaikuPortsSourcePackageDirectory ]
|
|
: input-source-packages : -x *_source-*.hpkg : isTarget ;
|
|
AddFilesToHaikuImage home haikuports
|
|
: [ BuildHaikuPortsRepositoryConfig /boot/home/haikuports ] ;
|
|
|
|
# copy the haikuports format versions file
|
|
local formatVersionsFile = <haikuports>FormatVersions ;
|
|
SEARCH on $(formatVersionsFile) = $(HAIKU_PORTS) ;
|
|
AddFilesToHaikuImage home haikuports : $(formatVersionsFile) ;
|