commit 718c0d6c712666889f75be48108c1fe725d0e714 from: Omar Polo date: Mon Jan 03 18:11:51 2022 UTC work around freebsd' printf printf: Illegal option -i this is why we can't have nice things, isn't it? commit - 7c956fefc2035666770958e2cfaf278e20e6472a commit + 718c0d6c712666889f75be48108c1fe725d0e714 blob - 4d88d235a3b7fab68000216ca0c17d78b7cac86e blob + b08dd3b7991d633d0dff24a28b5bfb2882d4c63c --- configure +++ configure @@ -473,11 +473,11 @@ printf "\n\n" # Include dependency info for src in ${ALL_SRCS}; do - printf "-include ${src%.c}.d\n" + printf "%s\n" "-include ${src%.c}.d" done for comp in ${COMPAT}; do - printf "-include ${comp%.o}.d\n" + printf "%s\n" "-include ${comp%.o}.d" done echo "file Makefile.local: written" 1>&2