From 26670b8169a1b986a989178bc4848190879fb25a Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Mon, 19 Jan 2015 07:59:17 +0000 Subject: [PATCH] Fix wrong option letter in sed command git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@38297 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 +++++- GNUmakefile.preamble | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4ac331c..660245d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,14 @@ +2015-01-19 Wolfgang Lux + + * GNUmakefile.preamble: Fix wrong option letter in sed command. + 2015-01-15 Richard Frith-Macdonald * EcAlarmDestination.m: When shutting down, only wait for the background thread first time ... otherwise we could get into a recursive loop calling the -shutdown method while waiting for shutdown to complete. - + 2015-01-07 Richard Frith-Macdonald * configure.ac: diff --git a/GNUmakefile.preamble b/GNUmakefile.preamble index 65d8fe1..baf2600 100644 --- a/GNUmakefile.preamble +++ b/GNUmakefile.preamble @@ -48,7 +48,7 @@ LIBRARIES_DEPEND_UPON += $(ECCL_LIBS) # Extras for when building with SNMP support # ifeq ($(WITH_NET_SNMP),yes) - EcAlarmSinkSNMP.m_FILE_FLAGS += $(shell net-snmp-config --cflags | sed -e 's/-l[^ ]*//g' | sed -d 's/-fstack-protect-strong//g') + EcAlarmSinkSNMP.m_FILE_FLAGS += $(shell net-snmp-config --cflags | sed -e 's/-l[^ ]*//g' | sed -e 's/-fstack-protect-strong//g') LIBRARIES_DEPEND_UPON += $(shell net-snmp-config --agent-libs) endif