From 0b262c569faa4633e0370a4d65d19d48c66076cc Mon Sep 17 00:00:00 2001
From: Dean Camera <dean@fourwalledcubicle.com>
Date: Sat, 2 Jun 2012 13:00:55 +0000
Subject: [PATCH] Remove space padding on the current time when automatically
 generating AVR Studio 4 project creation/modification timestamps.

---
 Maintenance/makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;                        \
-- 
GitLab