On 4/16/15 1:49 PM, Viktor Dukhovni wrote:
Somewhat (Solaris) related question:* Do you have access to any SunOS 5.10 systems? * If you do, can you check whether /bin/sh supports the POSIX "export" built-in syntax: export NAME=value or does one have to write (in some order): NAME=value; export NAME I pushed an update to a test script in the master branch that uses the POSIX "export" syntax, and perhaps folks still using SunOS 5.10 might be unhappy if that breaks (when 1.1.x comes out).
/bin/sh is non-POSIX on Solaris 5.10. One must use /usr/xpg4/bin/sh (or ksh, bash, etc.) if one expects 'export foo=bar' to work.
-- Carson _______________________________________________ openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
