forked from pool/numactl
25 lines
693 B
Diff
25 lines
693 B
Diff
|
numactl: Revert __DATE__ in numastat
|
||
|
|
||
|
or this will trigger unnecessary, constant rebuilds in build
|
||
|
service environments.
|
||
|
|
||
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
||
|
|
||
|
---
|
||
|
numastat.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: numactl-2.0.8/numastat.c
|
||
|
===================================================================
|
||
|
--- numactl-2.0.8.orig/numastat.c
|
||
|
+++ numactl-2.0.8/numastat.c
|
||
|
@@ -725,7 +725,7 @@ double huge_page_size_in_bytes = 0;
|
||
|
|
||
|
void display_version_and_exit() {
|
||
|
char *version_string = "20120821";
|
||
|
- printf("%s version: %s: %s\n", prog_name, version_string, __DATE__);
|
||
|
+ printf("%s version: %s\n", prog_name, version_string);
|
||
|
exit(EXIT_SUCCESS);
|
||
|
}
|
||
|
|