less repeating, better readablity
Signed-off-by: Kefu Chai <kchai@redhat.com>
case "$1" in
-f )
shift
- refine_nasm_options="$refine_nasm_options -f $1"
+ refine_nasm_options+=" -f $1"
shift
;;
-c | --param* | -m* | -pipe | -thread )
;;
-I | -isystem )
shift
- refine_nasm_options="$refine_nasm_options -i $1"
+ refine_nasm_options+=" -i $1"
shift
;;
* )
# Keep other options
- refine_nasm_options="$refine_nasm_options $1"
+ refine_nasm_options+=" $1"
shift
;;
esac