Skip to content
Snippets Groups Projects
Commit 0b262c56 authored by Dean Camera's avatar Dean Camera
Browse files

Remove space padding on the current time when automatically generating AVR...

Remove space padding on the current time when automatically generating AVR Studio 4 project creation/modification timestamps.
parent e24993c1
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ make-as4-projects:
@for project_makefile in `find $(LUFA_ROOT)/Demos $(LUFA_ROOT)/Projects $(LUFA_ROOT)/Bootloaders -name makefile*`; do \
target_name=`grep "TARGET *=" $$project_makefile | cut -d'=' -f2 | sed 's/ //g'`; \
target_folder=`dirname $$project_makefile`; \
as4_date=`date "+%e-%b-%Y %H:%M:%S"`; \
as4_date=`date "+%-e-%b-%Y %-H:%-M:%-S"`; \
\
if ( test -n "$$target_name" ); then \
echo Creating AS4 project for project $$target_name; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment