From 8e9f8401ccaa2b8aff7089feee361b563c115397 Mon Sep 17 00:00:00 2001 From: Dorian Fevrier Date: Sat, 2 Jan 2021 19:34:54 +0100 Subject: [PATCH] remove redundant condition about PIE value un Makefile --- projects/unix/Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/projects/unix/Makefile b/projects/unix/Makefile index eec7522..930f99c 100755 --- a/projects/unix/Makefile +++ b/projects/unix/Makefile @@ -185,14 +185,6 @@ ifndef PIE endif endif -ifeq ($(PIE), 1) - CFLAGS += -fPIE - LDFLAGS += -pie -else - CFLAGS += -fno-PIE - LDFLAGS += -no-pie -endif - ifdef PIE ifeq ($(PIE), 1) CFLAGS += -fPIE