From 2c4be7f2b56a5f82044d076bdfe54bae7c119f0c Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Mon, 3 Mar 2014 14:34:58 +0000 Subject: [PATCH] The grep iregexp for extracting BLFS_TREE from the working copy has to be modified to account for the changes in "svn info" ouput with recent versions of svn --- jhalfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhalfs b/jhalfs index 518e80c..1a89763 100755 --- a/jhalfs +++ b/jhalfs @@ -271,7 +271,7 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then echo " Please rerun make and fix the configuration." exit 2 } - BLFS_TREE=$(cd $BLFS_WC_LOCATION; svn info | grep URL | sed 's@.*BLFS/@@') + BLFS_TREE=$(cd $BLFS_WC_LOCATION; svn info | grep '^URL' | sed 's@.*BLFS/@@') BLFS_BRANCH_ID=$(echo $BLFS_TREE | sed -e 's@trunk/BOOK@development@' \ -e 's@branches/@branch-@' \ -e 's@tags/@@' \