diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-14 19:18:16 +0200 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-14 19:18:16 +0200 |
commit | de366fdbe1d7cdb1a46404627492bee678595ba1 (patch) | |
tree | 1c56db0a54df0128615a171d51718cac9ad83278 /LUFA | |
parent | 82e606eb3b90a9d5c4ca72f2894d2a725ee8c3de (diff) | |
download | lufa-de366fdbe1d7cdb1a46404627492bee678595ba1.tar.gz lufa-de366fdbe1d7cdb1a46404627492bee678595ba1.tar.bz2 lufa-de366fdbe1d7cdb1a46404627492bee678595ba1.zip |
Add host application directories as distributables in Atmel Studio.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/StudioIntegration/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 8f41a24c0..5a3f7933a 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -124,7 +124,7 @@ check_filenames: $(MODULE_OUTPUT_XML) echo "Checking $$f..."; \ asf_file_dir=`dirname $$f`; \ xsltproc XDK/lufa_filelist_transform.xslt $$f | sed -e "/^$$/d" | while read -r i; do \ - if ( ! test -f "$$asf_file_dir/$$i" ); then \ + if ( ( ! test -f "$$asf_file_dir/$$i" ) && ( ! test -d "$$asf_file_dir/$$i" ) ); then \ echo "Source file \"$$i\" referenced in $$f does not exist!"; \ exit 1; \ fi; \ |