test/certs/mkcert.sh uses:

    #! /binbash"

It does not work as expected on some platforms, like OpenBSD and
FreeBSD where Bash is located in, say, /usr/local/bin or
/usr/pkg/bin/bash.

Instead, I believe you should use:

    #! /usr/bin/env bash

Another potential pain point is PERL:

    grep -iIR perl * | grep '#' | grep -v 'env' | wc -l
    232

It looks like most uses of PERL are expected to be at
/usr/local/bin/perl. 160 of them use /usr/bin/env, but 230 or so use
the potentially incorrect path.


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4415
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to