Skip to content
Snippets Groups Projects
Commit 9dc631b7 authored by Christian Engwer's avatar Christian Engwer
Browse files

fix FS#809

[[Imported from SVN: r6055]]
parent 3370541e
No related branches found
No related tags found
No related merge requests found
...@@ -506,6 +506,7 @@ export ONLY="" ...@@ -506,6 +506,7 @@ export ONLY=""
# parse commandline parameters # parse commandline parameters
while test $# -gt 0; do while test $# -gt 0; do
# get option # get option
command=$1
option=$1 option=$1
# get args # get args
...@@ -631,12 +632,12 @@ while test $# -gt 0; do ...@@ -631,12 +632,12 @@ while test $# -gt 0; do
done done
# we assume there should be a command... # we assume there should be a command...
if test "x$1" = "x"; then if test "x$command" = "x"; then
usage usage
exit 1 exit 1
fi fi
case "$1" in case "$command" in
print) print)
create_module_list create_module_list
eval "print_module_list ' ' $MODULES" eval "print_module_list ' ' $MODULES"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment