From cbf6c57678967b996e66edcf9330aee44068235f Mon Sep 17 00:00:00 2001 From: Mathieu Parent Date: Wed, 31 Jul 2019 00:03:07 +0200 Subject: [PATCH] Fix -fPIE casing -fpie seems to work, but bhlc complains that -fPIE is missing --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cc48563..4a72ce9 100644 --- a/configure.ac +++ b/configure.ac @@ -130,7 +130,7 @@ AC_CHECK_FUNC(setfsuid, , [AC_MSG_ERROR([System does not support setfsuid()])]) # FIXME: add test(s) to autodisable these flags when compiler/linker don't support it if test $enable_pie != "no"; then - PIE_CFLAGS="-fpie -pie" + PIE_CFLAGS="-fPIE -pie" else PIE_CFLAGS="" fi -- 2.20.1