From: Dean Camera Date: Sat, 2 Jun 2012 13:00:55 +0000 (+0000) Subject: Remove space padding on the current time when automatically generating AVR Studio... X-Git-Tag: LUFA-130303~235 X-Git-Url: http://git.linex4red.de/pub/lufa.git/commitdiff_plain/0b262c569faa4633e0370a4d65d19d48c66076cc Remove space padding on the current time when automatically generating AVR Studio 4 project creation/modification timestamps. --- diff --git a/Maintenance/makefile b/Maintenance/makefile index 41fb99107..d9d195193 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -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; \