Codebase list atop / a0f1616
Update upstream source from tag 'upstream/2.9.0' Update to upstream version '2.9.0' with Debian dir f9b2a45f24b51b34ad6bf13dc3cdfcc5a808fcb3 Marc Haber 10 months ago
1 changed file(s) with 10 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 #!/bin/sh
1
2 # Make a new versdate.h with the current date filled
3 #
4 CURDATE=$(date +%Y/%m/%d\ %H:%M:%S)
5
6 echo "#ifndef __ATOP_VERSDATA__" > versdate.h
7 echo "#define __ATOP_VERSDATA__" >> versdate.h
8 echo "#define ATOPDATE \"$CURDATE\"" >> versdate.h
9 echo "#endif" >> versdate.h