From c70399e4669a60aae21411e5a9ba8566b99ba0e6 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 13 Sep 2006 09:39:39 +0000 Subject: [PATCH] Prepared for new revision timestamps to mark cdrskin test versions --- cdrskin/cdrskin_timestamp.h | 2 +- cdrskin/make_timestamp.sh | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 cdrskin/make_timestamp.sh diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index 543168b..2273496 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2006.09.03.132934" +#define Cdrskin_timestamP "2006.09.13.093350" diff --git a/cdrskin/make_timestamp.sh b/cdrskin/make_timestamp.sh new file mode 100755 index 0000000..957a2c4 --- /dev/null +++ b/cdrskin/make_timestamp.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Create version timestamp cdrskin/cdrskin_timestamp.h +# to be executed within ./libburn-* resp ./cdrskin-* + +timestamp="$(date -u '+%Y.%m.%d.%H%M%S')" +echo "Version timestamp : $timestamp" +echo '#define Cdrskin_timestamP "'"$timestamp"'"' >cdrskin/cdrskin_timestamp.h +