Skip to content
Snippets Groups Projects
Commit 3fc96373 authored by Peter W. Draper's avatar Peter W. Draper
Browse files

The default task order is 'default' not 'none'

parent e4128a10
Branches
Tags
No related merge requests found
......@@ -1973,14 +1973,14 @@ esac
# Task order
AC_ARG_WITH([task-order],
[AS_HELP_STRING([--with-task-order=<model>],
[Task order to use @<:@none, EAGLE, GEAR default: default@:>@]
[Task order to use @<:@default, EAGLE, GEAR default: default@:>@]
)],
[with_task_order="$withval"],
[with_task_order="none"]
[with_task_order="default"]
)
if test "$with_subgrid" != "none"; then
if test "$with_task_order" != "none"; then
if test "$with_task_order" != "default"; then
AC_MSG_ERROR([Cannot provide with-subgrid and with-task-order together])
else
with_task_order="$with_subgrid_task_order"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment