2007-10-12 22:19:19 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-01-26 00:26:57 +00:00
|
|
|
# Create version timestamp xorriso/xorriso_timestamp.h
|
2007-10-12 22:19:19 +00:00
|
|
|
# to be executed within ./libisoburn-develop
|
|
|
|
|
|
|
|
timestamp="$(date -u '+%Y.%m.%d.%H%M%S')"
|
|
|
|
echo "Version timestamp : $timestamp"
|
2008-01-26 00:26:57 +00:00
|
|
|
echo '#define Xorriso_timestamP "'"$timestamp"'"' >xorriso/xorriso_timestamp.h
|
2007-10-12 22:19:19 +00:00
|
|
|
|