summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2021-10-16 17:18:14 -0700
committerDave Beckett <dave@dajobe.org>2021-10-16 17:18:14 -0700
commitbd6ccf26129e0c7f218919288b255c7d8e2a6e8d (patch)
treeb69be345d7023ec84e5ecd6446da3647a88750ab
parente2a60c9713cd891b39a29afb52ef4d39227e8ea5 (diff)
downloadraptor-bd6ccf26129e0c7f218919288b255c7d8e2a6e8d.tar.gz
Fix newline quoting for OSX sh/bash compatibility
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c7fa6fa0..fae94798 100644
--- a/configure.ac
+++ b/configure.ac
@@ -276,7 +276,7 @@ if test $CC_IS_CLANG = yes; then
# -Wno-nullability-completeness : too noisy on OSX reporting
# warnings in stdio.h
extra_compiler_cflags="$extra_compiler_cflags \
--Wno-nullability-completeness
+-Wno-nullability-completeness \
"
fi
@@ -292,7 +292,7 @@ case "${host_os}" in
*)
# -Wundef : too noisy on OSX 10.12+ e.g. stdio.h fails
possible_warnings="$possible_warnings \
--Wundef
+-Wundef \
"
;;
esac