On 15/03/17 16:46, Selva Nair wrote:
> 
> You can set custom path during configure like this:
> 
> $ IFCONFIG=/opt/hacks/bin/ifconfig ./configure

This will work ... but generally this is a bit better:

   $ ./configure IFCONFIG=/opt/hacks/bin/ifconfig

The reason is that 'make' might some times decide to re-run autoreconf,
which with the former approach will lead to "forgetting" this
configuration setting.  The latter approach ensures ./configure will
preserve all these settings when it calls itself again.

You can easily spot if autoreconf have been re-run by looking at
config.log ... you'll see '--no-create --no-recursion' in the command
line "copy".


-- 
kind regards,

David Sommerseth
OpenVPN Technologies, Inc


Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Openvpn-devel mailing list
Openvpn-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Reply via email to