From 5984d4690bb62283819bcb202a081415e2d80baf Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Sat, 19 Jul 2014 16:02:44 -0400 Subject: [PATCH] remove -fPIC from SUID_CFLAGS this flag must not be set partially for a project in this way or it will cause build failures on some systems furthermore, it should usually only be set either automatically when required by the build system or by a packager who knows that it is required --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d0184a4ca..148d72720 100644 --- a/configure.ac +++ b/configure.ac @@ -1014,7 +1014,7 @@ m4_ifdef([v_mic], EFL_COMPILER_FLAG([-Wno-missing-field-initializers]) ]) -SUID_CFLAGS=-fPIE -fPIC +SUID_CFLAGS=-fPIE SUID_LDFLAGS=-pie AC_SUBST([SUID_CFLAGS]) AC_SUBST([SUID_LDFLAGS])