Corrected bug in book tree, only noticed when building CLFS2 book
This commit is contained in:
parent
e8fb8ef721
commit
b9c7e542aa
2 changed files with 7 additions and 2 deletions
|
@ -10,4 +10,9 @@ $Id$
|
||||||
As of Sept.15.2006 jhalfs cannot build the svn book. This is a book
|
As of Sept.15.2006 jhalfs cannot build the svn book. This is a book
|
||||||
problem and not jhalfs.
|
problem and not jhalfs.
|
||||||
|
|
||||||
|
|
||||||
|
Automation failures:
|
||||||
|
1.Directory /dev and devices nodes /dev/null, /dev/console needed to be
|
||||||
|
created in kernfs
|
||||||
|
2.Linux-headers does not contain /net.
|
||||||
|
3.Remove the creation of /null and /console node from the devices script.
|
2
jhalfs
2
jhalfs
|
@ -447,7 +447,7 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
||||||
echo -n "Downloading the BLFS document, $BLFS_BRANCH_ID version... "
|
echo -n "Downloading the BLFS document, $BLFS_BRANCH_ID version... "
|
||||||
if [[ ! -d ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} ]] ; then
|
if [[ ! -d ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} ]] ; then
|
||||||
mkdir -p ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML}
|
mkdir -p ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML}
|
||||||
svn co $SVN/BLFS/$TREE ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} >>$LOGDIR/$LOG 2>&1
|
svn co $SVN/BLFS/$BLFS_TREE ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} >>$LOGDIR/$LOG 2>&1
|
||||||
else
|
else
|
||||||
pushd ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} 1> /dev/null
|
pushd ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} 1> /dev/null
|
||||||
svn up >>$LOGDIR/$LOG 2>&1
|
svn up >>$LOGDIR/$LOG 2>&1
|
||||||
|
|
Reference in a new issue