Fix LUFA event list generation rule in the main LUFA makefile (thanks to Thomas Bleeker).
authorDean Camera <dean@fourwalledcubicle.com>
Mon, 14 Sep 2009 06:01:32 +0000 (06:01 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Mon, 14 Sep 2009 06:01:32 +0000 (06:01 +0000)
LUFA/makefile

index 147aaaa..4e9b8ca 100644 (file)
@@ -36,7 +36,7 @@ LUFA_SRC_FILES =     ./Drivers/USB/LowLevel/DevChapter9.c        \
 LUFA_Events.lst:\r
        @echo\r
        @echo Generating LUFA event name list...\r
-       @$(shell) cat `find ./ -name "*.h"` | egrep "EVENT_[^\(]*\(" | \\r
+       @$(shell) cat `find ./ -name "*.h"` | grep -E "EVENT_[^\(]*\(" | \\r
                      sed -n -e 's/^.*EVENT_/EVENT_/p' | \\r
                      cut -d'(' -f1 | sort | uniq > LUFA_Events.lst\r
                                  \r