aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2022-01-03 18:11:51 +0000
committerOmar Polo <op@omarpolo.com>2022-01-03 18:11:51 +0000
commit718c0d6c712666889f75be48108c1fe725d0e714 (patch)
tree3887c01aca3a968c8c0ed29b57b075acfe240845
parent7c956fefc2035666770958e2cfaf278e20e6472a (diff)
work around freebsd' printf
printf: Illegal option -i this is why we can't have nice things, isn't it?
-rwxr-xr-xconfigure4
1 files 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