diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 13:00:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 13:00:55 +0000 |
commit | 0b262c569faa4633e0370a4d65d19d48c66076cc (patch) | |
tree | 91a384acec2379cafa613f1fb1ed37b55e22b6a5 /Maintenance | |
parent | e24993c13aa30115b5ef5e4877dbb610efd9626e (diff) | |
download | lufa-0b262c569faa4633e0370a4d65d19d48c66076cc.tar.gz lufa-0b262c569faa4633e0370a4d65d19d48c66076cc.tar.bz2 lufa-0b262c569faa4633e0370a4d65d19d48c66076cc.zip |
Remove space padding on the current time when automatically generating AVR Studio 4 project creation/modification timestamps.
Diffstat (limited to 'Maintenance')
-rw-r--r-- | Maintenance/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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; \
|