On 27/05/15 15:03, Eric Blake wrote: > On 05/27/2015 07:44 AM, KO Myung-Hun wrote: > >>>> func_exit 1 >>>> fi >>>> + # Warn if symbolic link is requested on a system not supporting it. >>>> + # And fall back into copy. >>>> + if { test -n "$symbolic" || test -n "$lsymbolic" ; } \ >>>> + && ! $have_symlink_support ; then >>> >>> ! test "$have_symlink_support" >>> >> >> Hmmm... not working... > > "! test" is not portable to old Solaris /bin/sh, but "test !" is okay.
I has misread the patch. The current patch will work as it runs the true and false commands instead. cheers, Pádraig