For example using security/ca_root_nss
in `make config` there's an option for ETCSYMLINK
How would I be able to write out only the CLI commands/arguments to enable this option without using `make config` so that I would be able to throw this line into a script to simplify installations.
The script would also have rules for installing many other ports and I would like the entire thing to be as seamless as possible, however there are 3 ports I do need to set options for including my example
I know this is not correct but something along the lines of
thanks in advance
in `make config` there's an option for ETCSYMLINK
How would I be able to write out only the CLI commands/arguments to enable this option without using `make config` so that I would be able to throw this line into a script to simplify installations.
The script would also have rules for installing many other ports and I would like the entire thing to be as seamless as possible, however there are 3 ports I do need to set options for including my example
I know this is not correct but something along the lines of
make -DWITH_ETCSYMLINK install clean ;
thanks in advance