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
This commit is contained in:
wlux 2015-01-19 07:59:17 +00:00
parent 872be18d22
commit c30eed0fa0
2 changed files with 6 additions and 2 deletions

View file

@ -1,10 +1,14 @@
2015-01-19 Wolfgang Lux <wolfgang.lux@gmail.com>
* GNUmakefile.preamble: Fix wrong option letter in sed command.
2015-01-15 Richard Frith-Macdonald <rfm@gnu.org>
* 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 <rfm@gnu.org>
* configure.ac:

View file

@ -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