This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

install-sh posix compliance


The install-sh bundled with automake 1.6.2 and earlier versions contains
the line

        if [ -f $src -o -d $src ]

This is not strictly POSIX-conformant.  The line

        if [ -f $src ] || [ -d $src ]

is compliant and might be more portable.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]