From 718c0d6c712666889f75be48108c1fe725d0e714 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Mon, 3 Jan 2022 18:11:51 +0000 Subject: [PATCH] work around freebsd' printf printf: Illegal option -i this is why we can't have nice things, isn't it? --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 4d88d23..b08dd3b 100755 --- a/configure +++ b/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