diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-23 22:00:21 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-23 22:00:21 +0000 |
commit | 5a345722826201a4da926abc096aed76de3cdaa4 (patch) | |
tree | 7dbfee467ea4fa18d778b5b2e1dd02f78b2db5a3 /Makefile | |
parent | a7a998ac9b5c17d6e689569d8284ac288c64bf09 (diff) |
use REGRESS_HOST to specify the host to listen to; use in CI
some CI envs don't like `listen on localhost' but tolerate INADDR_ANY
or IN6ADDR_ANY_INIT.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,9 @@ # all. TESTS= +# host to bind to during regress +REGRESS_HOST = localhost + # -- build-related variables -- COBJS = ${COMPATS:.c=.o} |