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; this point, all tools have been adapted significantly for the bootstrap;
now, we will be using old tooling instead. 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 tar 1.12
======== ========
@ -116,11 +111,15 @@ gzip 1.2.4
``gzip`` is the most common compression format used for software source ``gzip`` is the most common compression format used for software source
code. It is luckily distributed as a barebones uncompressed ``.tar``, code. It is luckily distributed as a barebones uncompressed ``.tar``,
which we extract and then build. We do require deletion of a few lines which we extract and then build.
unsupported by mes libc.
Going forward, we can now use ``.tar.gz`` for source code. 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 patch 2.5.9
=========== ===========

View File

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