diff options
author | Omar Polo <op@omarpolo.com> | 2022-01-03 18:11:51 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-01-03 18:11:51 +0000 |
commit | 718c0d6c712666889f75be48108c1fe725d0e714 (patch) | |
tree | 3887c01aca3a968c8c0ed29b57b075acfe240845 | |
parent | 7c956fefc2035666770958e2cfaf278e20e6472a (diff) |
work around freebsd' printf
printf: Illegal option -i
this is why we can't have nice things, isn't it?
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |