From 0ad3dc153b9e03e371db2cf2f70a71f2675b6f5c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 25 Mar 2006 23:04:22 +0000 Subject: [PATCH] Changed handler for budiling version number of snapshots to remove colon in time part. For example, 2006-03-25_0921_snapshot instead of 2006-03-25_09:21_snapshot -- the reason being that the colon wreaks havoc with make(1) because it is used in a filename (RELEASE-NOTES-2006-03-25_09:21_snapshot.xml) that is also a target name. --- releasetools/docbook-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasetools/docbook-build b/releasetools/docbook-build index c40332c21..436b2aabc 100755 --- a/releasetools/docbook-build +++ b/releasetools/docbook-build @@ -181,7 +181,7 @@ else rm -f $LOGDIR/docbook-$DISTRO-$RELEASEVERSION.log.tmp DATE=`date +%Y-%m-%d` - TIME=`date '+%H:%M'` + TIME=`date '+%H%M'` ZONE=`date '+%Z'` UPPER_DISTRO=`echo $DISTRO | tr "[:lower:]" "[:upper:]"` -- 2.40.0