Fix retrieval of BLFS 9.0 tag. Note that older tags cannot be processed by

present jhalfs, and the case statement should be simplified...
This commit is contained in:
Pierre Labastie 2019-09-01 21:00:48 +00:00
parent 974fe35ae0
commit 91b5249f05

4
jhalfs
View file

@ -326,8 +326,8 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
exit 2 ;;
branch-6.* ) BLFS_TREE=branches/${BLFS_BRANCH_ID#branch-}/BOOK ;;
branch-* ) BLFS_TREE=branches/${BLFS_BRANCH_ID#branch-} ;;
6.2* | 7.* | 8.*) BLFS_TREE=tags/${BLFS_BRANCH_ID} ;;
* ) BLFS_TREE=tags/${BLFS_BRANCH_ID}/BOOK ;;
[isv]* | 6.3* ) BLFS_TREE=tags/${BLFS_BRANCH_ID}/BOOK ;;
* ) BLFS_TREE=tags/${BLFS_BRANCH_ID} ;;
esac
fi
load_file "${COMMON_DIR}/libs/func_install_blfs"