netbsd fails without /etc/mailname

2020-01-19 Thread Edgar Pettijohn
Just built a fresh git checkout. The configure make and install all went smoothly. However, now I have to have an /etc/mailname file or it gets stuck in config_default(). Specifically the following line from getmailname(): error = getaddrinfo(hostname, NULL, , ); It just hangs there until

netbsd makefile issue

2020-01-19 Thread Edgar Pettijohn
Had to do the following for `make uninstall' $ for file in `find . -name Makefile` > do > sed -i 's/\/bin\/true/\/usr\/bin\/true/g' $file > done $ sudo make uninstall Edgar