We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbd4af commit 60cb1fbCopy full SHA for 60cb1fb
configure
@@ -468,12 +468,14 @@ then
468
# extract the first 2 version fields, ignore everything else
469
sed 's/pandoc \([0-9]*\)\.\([0-9]*\).*/\1 \2/')
470
471
+ MIN_PV_MAJOR="1"
472
+ MIN_PV_MINOR="9"
473
# these patterns are shell globs, *not* regexps
474
PV_MAJOR=${PV_MAJOR_MINOR% *}
475
PV_MINOR=${PV_MAJOR_MINOR#* }
- if [ "$PV_MAJOR" -lt "1" ] || [ "$PV_MINOR" -lt "8" ]
476
+ if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
477
then
- step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"
478
+ step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
479
BAD_PANDOC=1
480
fi
481
0 commit comments