work around freebsd' printf

printf: Illegal option -i

this is why we can't have nice things, isn't it?
This commit is contained in:
Omar Polo 2022-01-03 18:11:51 +00:00
parent 7c956fefc2
commit 718c0d6c71
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -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