diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2017-12-31 17:38:02 +1100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2017-12-31 17:38:02 +1100 |
commit | 4e5303044ed233fb91e431e571710332a43076f1 (patch) | |
tree | d1370d8851c07619ba8944e0471afb7ad5a3549a /LUFA | |
parent | 4145d6bec052608b0b023cb85f2f7f9e51521482 (diff) | |
download | lufa-4e5303044ed233fb91e431e571710332a43076f1.tar.gz lufa-4e5303044ed233fb91e431e571710332a43076f1.tar.bz2 lufa-4e5303044ed233fb91e431e571710332a43076f1.zip |
Fix LUFA core makefile version target.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index 7e7a9c3af..619a54315 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -9,7 +9,7 @@ # Makefile for the LUFA library itself. # --------------------------------------- -LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING $(LUFA_PATH)/Version.h | cut -d'"' -f2) +LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING Version.h | cut -d'"' -f2) # Default target - no default action when attempting to build the core directly all: |