Merge trunk r3949 "Fix issues in clfs"
This commit is contained in:
parent
10bc5b9130
commit
de10f6c5a5
2 changed files with 26 additions and 9 deletions
|
@ -8,9 +8,18 @@ get_book() { #
|
|||
cd $JHALFSDIR
|
||||
|
||||
if [ -z $WORKING_COPY ] ; then
|
||||
# Check for Subversion instead of just letting the script hit 'svn' and fail.
|
||||
# Check for Subversion or git instead of just letting the script fail.
|
||||
case $PROGNAME in
|
||||
lfs | hlfs)
|
||||
test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
||||
exit 1"
|
||||
;;
|
||||
clfs*)
|
||||
test `type -p git` || eval "echo \"This feature requires Git.\"
|
||||
exit 1"
|
||||
;;
|
||||
esac
|
||||
|
||||
echo -n "Downloading the $PROGNAME document, $LFSVRS version... "
|
||||
|
||||
case $PROGNAME in
|
||||
|
@ -31,14 +40,19 @@ get_book() { #
|
|||
echo $TREE
|
||||
git clone $GIT ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1
|
||||
if [ ! $TREE == "development" ]; then
|
||||
cd ${PROGNAME}-$LFSVRS
|
||||
pushd ${PROGNAME}-$LFSVRS > /dev/null
|
||||
echo "Checking out $LFSVRS at $PWD in $TREE"
|
||||
git checkout ${TREE} >>$LOGDIR/$LOG 2>&1
|
||||
popd > /dev/null
|
||||
fi
|
||||
else
|
||||
cd ${PROGNAME}-$LFSVRS
|
||||
case $PROGNAME in
|
||||
clfs*) git pull >>$LOGDIR/$LOG 2>&1
|
||||
clfs*)
|
||||
# If the repo is in "detached head" state, git pull fails, so get
|
||||
# back first to master:
|
||||
git checkout master >>$LOGDIR/$LOG 2>&1
|
||||
git pull >>$LOGDIR/$LOG 2>&1
|
||||
if [ ! $TREE == "development" ]; then
|
||||
git checkout ${TREE} >>$LOGDIR/$LOG 2>&1
|
||||
fi
|
||||
|
@ -49,7 +63,7 @@ get_book() { #
|
|||
fi
|
||||
echo -ne "done\n"
|
||||
|
||||
else
|
||||
else # Working copy
|
||||
echo -ne "Using $BOOK as book's sources ...\n"
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -105,6 +105,9 @@
|
|||
<xsl:when test="contains($dirname, 'udev')">
|
||||
<xsl:text>udev/</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($dirname, 'iputils')">
|
||||
<xsl:text>iputils/</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$dirname"/>
|
||||
<xsl:text>/</xsl:text>
|
||||
|
|
Reference in a new issue