diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-05 18:32:50 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-05 18:32:50 +0000 |
commit | f7ad67cf18dd41ac7719e8cb028aa997804df6bb (patch) | |
tree | e84f76e23e9aae42654246cc65d1ebd73207e590 /LUFA/Build | |
parent | 865529adeabe501870f52d4c0b8b99a940adbdea (diff) | |
download | lufa-f7ad67cf18dd41ac7719e8cb028aa997804df6bb.tar.gz lufa-f7ad67cf18dd41ac7719e8cb028aa997804df6bb.tar.bz2 lufa-f7ad67cf18dd41ac7719e8cb028aa997804df6bb.zip |
Fix LUFA_SRC_PLATFORM makefile variable in the SOURCES build module to use LUFA_ROOT_PATH rather than LUFA_PATH.
Diffstat (limited to 'LUFA/Build')
-rw-r--r-- | LUFA/Build/lufa.sources.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LUFA/Build/lufa.sources.in b/LUFA/Build/lufa.sources.in index e3df528fa..10e5c1d70 100644 --- a/LUFA/Build/lufa.sources.in +++ b/LUFA/Build/lufa.sources.in @@ -101,7 +101,8 @@ LUFA_SRC_SERIAL := $(LUFA_ROOT_PATH)/Drivers/Peripheral/$(ARCH)/Serial_$(AR LUFA_SRC_TWI := $(LUFA_ROOT_PATH)/Drivers/Peripheral/$(ARCH)/TWI_$(ARCH).c ifeq ($(ARCH), UC3) - LUFA_SRC_PLATFORM := $(LUFA_PATH)/Platform/UC3/Exception.S $(LUFA_PATH)/Platform/UC3/InterruptManagement.c + LUFA_SRC_PLATFORM := $(LUFA_ROOT_PATH)/Platform/UC3/Exception.S \ + $(LUFA_ROOT_PATH)/Platform/UC3/InterruptManagement.c else LUFA_SRC_PLATFORM := endif |