diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-26 05:27:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-26 05:27:59 +0000 |
commit | cf610c5c91c3eee02dec7ca848acc8da831ad98a (patch) | |
tree | 1410f070fe7c32319b58e2e9c3c5d6b1dae7fde1 /LUFA/makefile | |
parent | de70f0f1cf034d8f22141a2825f24ad60d14421b (diff) | |
download | lufa-cf610c5c91c3eee02dec7ca848acc8da831ad98a.tar.gz lufa-cf610c5c91c3eee02dec7ca848acc8da831ad98a.tar.bz2 lufa-cf610c5c91c3eee02dec7ca848acc8da831ad98a.zip |
Make HID device class driver reselect the correct endpoint after the user callbacks have fired.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r-- | LUFA/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index 4e9b8ca19..c668399d4 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -38,7 +38,7 @@ LUFA_Events.lst: @echo Generating LUFA event name list...
@$(shell) cat `find ./ -name "*.h"` | grep -E "EVENT_[^\(]*\(" | \
sed -n -e 's/^.*EVENT_/EVENT_/p' | \
- cut -d'(' -f1 | sort | uniq > LUFA_Events.lst
+ cut -d'(' -f1 | sort | uniq | tee LUFA_Events.lst
all: LUFA_Events.lst
|