File fix-unquoted-variables.patch of Package globus_toolkit
--- globus_toolkit-6.0.1493989444-orig/gridftp/server/src/configure 2017-05-17 20:05:23.000000001 +0100
+++ globus_toolkit-6.0.1493989444/gridftp/server/src/configure 2017-08-04 20:00:29.000000001 +0100
@@ -17025,7 +17025,7 @@
*)
CHKCONFIG_DEFAULT="$withval"
for r in 0 1 2 3 4 5 6; do
- if expr $withval : ".*$r.*" > /dev/null; then
+ if expr "$withval" : ".*$r.*" > /dev/null; then
DEFAULT_START="${DEFAULT_START:+$DEFAULT_START }$r"
else
DEFAULT_STOP="${DEFAULT_STOP:+$DEFAULT_STOP }$r"