From 360122ed5d417d6bb820bb07fe5f007950a8ad65 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 2 Apr 2015 22:18:05 +0200 Subject: mmc-utils: restore FORTIFY_SOURCE=2 The previous commit ba4338d mmc-utils: don't set -D_FORTIFY_SOURCE in Makefile applied the global value of FORITFY_SOURCE also to mmc-utils. As the package was meant to be built with FORTIFY_SOURCE upstream, restore that behaviour and make it play nice with the global setting by undefining the macro before defining it. Signed-off-by: Daniel Golle --- .../patches/001-dont-set-fortify-source-in-makefile.patch | 11 ----------- .../patches/001-properly-set-fortify-source-in-makefile.patch | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 utils/mmc-utils/patches/001-dont-set-fortify-source-in-makefile.patch create mode 100644 utils/mmc-utils/patches/001-properly-set-fortify-source-in-makefile.patch (limited to 'utils/mmc-utils') diff --git a/utils/mmc-utils/patches/001-dont-set-fortify-source-in-makefile.patch b/utils/mmc-utils/patches/001-dont-set-fortify-source-in-makefile.patch deleted file mode 100644 index 9b2b8ba25..000000000 --- a/utils/mmc-utils/patches/001-dont-set-fortify-source-in-makefile.patch +++ /dev/null @@ -1,11 +0,0 @@ -Index: mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189/Makefile -=================================================================== ---- mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189.orig/Makefile -+++ mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189/Makefile -@@ -1,5 +1,5 @@ - CC ?= gcc --AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -+AM_CFLAGS = -D_FILE_OFFSET_BITS=64 - CFLAGS ?= -g -O2 - objects = \ - mmc.o \ diff --git a/utils/mmc-utils/patches/001-properly-set-fortify-source-in-makefile.patch b/utils/mmc-utils/patches/001-properly-set-fortify-source-in-makefile.patch new file mode 100644 index 000000000..4a35b959b --- /dev/null +++ b/utils/mmc-utils/patches/001-properly-set-fortify-source-in-makefile.patch @@ -0,0 +1,11 @@ +Index: mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189/Makefile +=================================================================== +--- mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189.orig/Makefile ++++ mmc-utils-f4eb241519f8d500ce6068a70d2389be39ac5189/Makefile +@@ -1,5 +1,5 @@ + CC ?= gcc +-AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 ++AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 + CFLAGS ?= -g -O2 + objects = \ + mmc.o \ -- cgit v1.2.3