> (do_copyrights): Clear unless no_symlink_support is set. > -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | > --more-syml | --more-sym | --more-sy | --more-s | --more- | --more | --mor | > --mo ) > - symbolic=true > - do_copyrights= > + test -z "$no_symlink_support" && symbolic=true > + test -z "$no_symlink_support" && do_copyrights= > shift ;;
I would leave the do_copyrights line as it is. Rationale: It is desirable for the -S option to produce the same output (file contents) on all platforms. Bruno