aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/StudioIntegration/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-17 20:07:19 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-17 20:07:19 +0000
commit2709627970191a8df057380ac74b8df48ccfb3cd (patch)
tree0019ee94490bd140eb85b35a223cf3726a09ed15 /LUFA/StudioIntegration/makefile
parentaf241316deb5a900757fa77d07864c1d9d0b6dc4 (diff)
downloadlufa-2709627970191a8df057380ac74b8df48ccfb3cd.tar.gz
lufa-2709627970191a8df057380ac74b8df48ccfb3cd.tar.bz2
lufa-2709627970191a8df057380ac74b8df48ccfb3cd.zip
Clean up VSIX generation scripts.
Diffstat (limited to 'LUFA/StudioIntegration/makefile')
-rw-r--r--LUFA/StudioIntegration/makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile
index 55efdcd94..41b95a6c8 100644
--- a/LUFA/StudioIntegration/makefile
+++ b/LUFA/StudioIntegration/makefile
@@ -72,8 +72,10 @@ generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML)
check_filenames: $(MODULE_OUTPUT_XML)
@echo Verifying referenced filenames of ASF.xml modules...
@for f in `find $(LUFA_ROOT)/../ -name "asf.xml"`; do \
- xsltproc XSLT/lufa_filelist_transform.xslt $$f | grep -v "^<" | sed -e "/^$$/d" | while read -r i; do \
- if ( ! test -f "`dirname $$f`/$$i" ); then \
+ echo "Checking $$f..."; \
+ asf_file_dir=`dirname $$f`; \
+ xsltproc XSLT/lufa_filelist_transform.xslt $$f | sed -e "/^$$/d" | while read -r i; do \
+ if ( ! test -f "$$asf_file_dir/$$i" ); then \
echo "Source file \"$$i\" referenced in $$f does not exist!"; \
exit 1; \
fi; \