From b0b0f063a7ef535c5f7a51ee4b9df1f32958f52c Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 14 Aug 2022 17:25:39 -0700 Subject: [PATCH] configure: Enable -C to install if supported (fix typo). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cb5d4dea1..c1d465448 100644 --- a/configure.ac +++ b/configure.ac @@ -1512,7 +1512,7 @@ dnl AC_PATH_PROGS_FEATURE_CHECK([INSTALL], [install], [ - $ac_path_INSTALL -B --version > /dev/null 2>&1 \ + $ac_path_INSTALL -C --version > /dev/null 2>&1 \ && ac_cv_path_INSTALL="$ac_path_INSTALL -C" ])