From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> Avoid "if [[...]]" format which seems to be bash extension. The script uses "if [...]" except for this one. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0327578..9ac9701 100755 --- a/configure +++ b/configure @@ -1682,7 +1682,7 @@ int main(int argc, char **argv) EOF if compile_prog "" "" "s390_z196_facilities"; then $TMPE - if [[ $? -eq 0 ]]; then + if [ $? -eq 0 ]; then s390_z196_facilities="yes" fi fi -- 2.9.4 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html