From 91e8eaa0b0d997924682aea30b39e264bbd634a1 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Mon, 21 Aug 2017 16:05:14 +0000 Subject: [PATCH] Fix stupid copy-paste bug --- install-blfs-tools.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-blfs-tools.sh b/install-blfs-tools.sh index 51cd92c..2457680 100755 --- a/install-blfs-tools.sh +++ b/install-blfs-tools.sh @@ -140,10 +140,10 @@ case $BLFS_BRANCH_ID in esac case $LFS_BRANCH_ID in development ) LFS_TREE=trunk/BOOK ;; - branch-6.* ) LFS_TREE=branches/${BLFS_BRANCH_ID#branch-}/BOOK ;; - branch-* ) LFS_TREE=branches/${BLFS_BRANCH_ID#branch-} ;; - 6.* ) LFS_TREE=tags/${BLFS_BRANCH_ID}/BOOK ;; - * ) LFS_TREE=tags/${BLFS_BRANCH_ID} ;; + branch-6.* ) LFS_TREE=branches/${LFS_BRANCH_ID#branch-}/BOOK ;; + branch-* ) LFS_TREE=branches/${LFS_BRANCH_ID#branch-} ;; + 6.* ) LFS_TREE=tags/${LFS_BRANCH_ID}/BOOK ;; + * ) LFS_TREE=tags/${LFS_BRANCH_ID} ;; esac # Check for build prerequisites.