about summary refs log tree commit diff
path: root/configure
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-10-18 13:04:52 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-10-18 14:51:20 -0700
commit33795bc4d39227818f1ea849bee50216235e8a0f (patch)
tree13d650cc50dbb98da3655a8a0b264e8b8acbbb8b /configure
parentacf2d208d617d88b91c3d3282bf3e5e1a9a51c10 (diff)
downloadrust-33795bc4d39227818f1ea849bee50216235e8a0f.tar.gz
rust-33795bc4d39227818f1ea849bee50216235e8a0f.zip
configure: fix use of bash-specific here strings (also awk, please no more deps).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 7 insertions, 3 deletions
diff --git a/configure b/configure
index cd500b6ec43..3ff72afe67f 100755
--- a/configure
+++ b/configure
@@ -362,11 +362,15 @@ fi
 
 if [ ! -z "$CFG_PANDOC" ]
 then
-    read PV_MAJOR PV_MINOR <<<$(pandoc --version | awk '/^pandoc/ {split($2, PV, "."); print PV[1] " " PV[2]}')
+	PANDOC_VER_LINE=$(pandoc --version | grep '^pandoc ')
+	PANDOC_VER=${PANDOC_VER_LINE#pandoc }
+	PV_MAJOR_MINOR=${PANDOC_VER%.[0-9]}
+	PV_MAJOR=${PV_MAJOR_MINOR%.[0-9]}
+	PV_MINOR=${PV_MAJOR_MINOR#[0-9].}
     if [ "$PV_MAJOR" -lt "1" ] || [ "$PV_MINOR" -lt "8" ]
     then
-	step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"
-	BAD_PANDOC=1
+		step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"
+		BAD_PANDOC=1
     fi
 fi