Move sed build to after tar and gzip

This commit is contained in:
Paul Dersey 2021-03-15 14:33:23 -04:00
parent 4ae5115d89
commit 46b0d547a3
2 changed files with 12 additions and 13 deletions

View File

@ -98,11 +98,6 @@ old GNU software, using older versions compilable by tinycc. Prior to
this point, all tools have been adapted significantly for the bootstrap;
now, we will be using old tooling instead.
sed 4.0.7
=========
You are most likely aware of GNU ``sed``, a line editor.
tar 1.12
========
@ -116,11 +111,15 @@ gzip 1.2.4
``gzip`` is the most common compression format used for software source
code. It is luckily distributed as a barebones uncompressed ``.tar``,
which we extract and then build. We do require deletion of a few lines
unsupported by mes libc.
which we extract and then build.
Going forward, we can now use ``.tar.gz`` for source code.
sed 4.0.7
=========
You are most likely aware of GNU ``sed``, a line editor.
patch 2.5.9
===========

View File

@ -56,12 +56,6 @@ cd ${pkg}
kaem --file ${pkg}.kaem
cd ..
# sed
pkg="sed-4.0.7"
cd ${pkg}
kaem --file ${pkg}.kaem
cd ..
# tar
pkg="tar-1.12"
cd ${pkg}
@ -74,6 +68,12 @@ cd ${pkg}
kaem --file ${pkg}.kaem
cd ..
# sed
pkg="sed-4.0.7"
cd ${pkg}
kaem --file ${pkg}.kaem
cd ..
# patch
pkg="patch-2.5.9"
cd ${pkg}