From: Dean Camera Date: Mon, 14 Sep 2009 06:01:32 +0000 (+0000) Subject: Fix LUFA event list generation rule in the main LUFA makefile (thanks to Thomas Bleeker). X-Git-Tag: LUFA-110528-BETA~900 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/eaa914a4e445c25ffdbee7be7caf85165540c98a?ds=inline Fix LUFA event list generation rule in the main LUFA makefile (thanks to Thomas Bleeker). --- diff --git a/LUFA/makefile b/LUFA/makefile index 147aaaacf..4e9b8ca19 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -36,7 +36,7 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \ LUFA_Events.lst: @echo @echo Generating LUFA event name list... - @$(shell) cat `find ./ -name "*.h"` | egrep "EVENT_[^\(]*\(" | \ + @$(shell) cat `find ./ -name "*.h"` | grep -E "EVENT_[^\(]*\(" | \ sed -n -e 's/^.*EVENT_/EVENT_/p' | \ cut -d'(' -f1 | sort | uniq > LUFA_Events.lst