Answer the question
In order to leave comments, you need to log in
What is the error in the configure script and how to fix it?
I'm trying to configure the package, but it keeps saying:
line 480: continue: only relevant for "for", "while", or "until" loops
if [ -z $var ]; then continue; fi
Answer the question
In order to leave comments, you need to log in
break and continue are only used inside loops to control them. If you want to abort script execution when $var is not empty, then as an optionif ! [ -z $var ]; then return 1; fi
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question