No longer need to retain binutils source package. Finixed the fix started on r2292.
Updated TODO.
This commit is contained in:
parent
5aa36d57d5
commit
0d52034976
3 changed files with 6 additions and 18 deletions
10
TODO
10
TODO
|
@ -1,6 +1,8 @@
|
||||||
jhalfs TODO
|
jhalfs TODO
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
(Work for almost all this issues is in progress on the experimental branch)
|
||||||
|
|
||||||
CODE STYLE
|
CODE STYLE
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
@ -16,7 +18,7 @@ CODE STYLE
|
||||||
"Date" key when needed (like in the -v output of jhalfs)
|
"Date" key when needed (like in the -v output of jhalfs)
|
||||||
|
|
||||||
|
|
||||||
MASTER SCRIPT
|
MASTER SCRIPT (work in progress on the experimental branch)
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- Make jhalfs a "master script" that will control and run each
|
- Make jhalfs a "master script" that will control and run each
|
||||||
|
@ -49,9 +51,6 @@ LFS MODULE (some of this is applicable also to CLFS and HLFS modules)
|
||||||
- Chapter05 testsuites should be optionals. Run by default Chapter06
|
- Chapter05 testsuites should be optionals. Run by default Chapter06
|
||||||
testsuites only.
|
testsuites only.
|
||||||
|
|
||||||
- Look that there is no need now to keep the Binutils source.
|
|
||||||
Fixed in part in r2292. The XSL need be fixed yet.
|
|
||||||
|
|
||||||
- Fix the unpack code to don't hang when both the bz2 and gz formats
|
- Fix the unpack code to don't hang when both the bz2 and gz formats
|
||||||
of the same package are founds in the sources dir.
|
of the same package are founds in the sources dir.
|
||||||
|
|
||||||
|
@ -133,6 +132,7 @@ OTHERS
|
||||||
|
|
||||||
- To add support for ICA/farce? Can be done as a separate module?
|
- To add support for ICA/farce? Can be done as a separate module?
|
||||||
|
|
||||||
- To add support for package management???
|
- To add support for package management??? NO for this tool. Maybe in the
|
||||||
|
under development new alfs tool.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -69,9 +69,7 @@
|
||||||
<xsl:text>#!/bin/sh
set -e

</xsl:text>
|
<xsl:text>#!/bin/sh
set -e

</xsl:text>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<xsl:if test="sect2[@role='installation'] or
|
<xsl:if test="sect2[@role='installation']">
|
||||||
@id='ch-tools-adjusting' or
|
|
||||||
@id='ch-system-readjusting'">
|
|
||||||
<xsl:text>cd $PKGDIR
</xsl:text>
|
<xsl:text>cd $PKGDIR
</xsl:text>
|
||||||
<xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
|
<xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
|
||||||
<xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1
</xsl:text>
|
<xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1
</xsl:text>
|
||||||
|
|
10
jhalfs
10
jhalfs
|
@ -420,11 +420,6 @@ chapter5_Makefiles() {
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Should be handled inside xsl script
|
|
||||||
if [[ `_IS_ $i adjusting` ]]; then
|
|
||||||
sed '/cd $PKGDIR/d' -i chapter05/$i
|
|
||||||
fi
|
|
||||||
|
|
||||||
# First append each name of the script files to a list (this will become
|
# First append each name of the script files to a list (this will become
|
||||||
# the names of the targets in the Makefile
|
# the names of the targets in the Makefile
|
||||||
chapter5="$chapter5 $i"
|
chapter5="$chapter5 $i"
|
||||||
|
@ -528,11 +523,6 @@ chapter6_Makefiles() {
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Should be handled by xsl script
|
|
||||||
if [[ `_IS_ $i adjusting` ]]; then
|
|
||||||
sed '/cd $PKGDIR/d' -i chapter06/$i
|
|
||||||
fi
|
|
||||||
|
|
||||||
# First append each name of the script files to a list (this will become
|
# First append each name of the script files to a list (this will become
|
||||||
# the names of the targets in the Makefile
|
# the names of the targets in the Makefile
|
||||||
chapter6="$chapter6 $i"
|
chapter6="$chapter6 $i"
|
||||||
|
|
Reference in a new issue